2013-01-16 19:26:48 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!-- This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
- License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
|
|
|
|
|
|
|
|
<merge xmlns:android="http://schemas.android.com/apk/res/android"
|
2013-03-15 00:44:00 +00:00
|
|
|
xmlns:gecko="http://schemas.android.com/apk/res-auto">
|
2013-01-16 19:26:48 +00:00
|
|
|
|
2013-01-29 23:57:52 +00:00
|
|
|
<RelativeLayout android:id="@+id/tabs_panel_header"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="@dimen/browser_toolbar_height">
|
2013-01-16 19:26:48 +00:00
|
|
|
|
2013-01-18 19:58:45 +00:00
|
|
|
<view class="org.mozilla.gecko.TabsPanel$TabsPanelToolbar"
|
2013-01-16 19:26:48 +00:00
|
|
|
android:layout_width="fill_parent"
|
2013-01-29 23:57:52 +00:00
|
|
|
android:layout_height="fill_parent"
|
2013-02-13 16:50:56 +00:00
|
|
|
android:background="@color/background_tabs_dark">
|
2013-01-16 19:26:48 +00:00
|
|
|
|
2013-01-18 19:58:45 +00:00
|
|
|
<include layout="@layout/tabs_panel_header"/>
|
2013-01-16 19:26:48 +00:00
|
|
|
|
|
|
|
</view>
|
|
|
|
|
2013-01-18 19:58:45 +00:00
|
|
|
<View android:layout_width="fill_parent"
|
|
|
|
android:layout_height="2dp"
|
2013-01-29 23:57:52 +00:00
|
|
|
android:layout_alignParentBottom="true"
|
|
|
|
android:background="#1A000000"/>
|
2013-01-18 19:58:45 +00:00
|
|
|
|
2013-01-29 23:57:52 +00:00
|
|
|
</RelativeLayout>
|
2013-01-18 19:58:45 +00:00
|
|
|
|
|
|
|
<view class="org.mozilla.gecko.TabsPanel$TabsListContainer"
|
2013-02-22 07:22:37 +00:00
|
|
|
android:id="@+id/tabs_container"
|
2013-01-18 19:58:45 +00:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="0dip"
|
|
|
|
android:layout_weight="1.0">
|
|
|
|
|
|
|
|
<org.mozilla.gecko.TabsTray android:id="@+id/normal_tabs"
|
|
|
|
style="@style/TabsList"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
2013-01-25 01:08:08 +00:00
|
|
|
android:choiceMode="singleChoice"
|
2013-01-18 19:58:45 +00:00
|
|
|
android:visibility="gone"
|
|
|
|
gecko:tabs="tabs_normal"/>
|
|
|
|
|
|
|
|
<org.mozilla.gecko.TabsTray android:id="@+id/private_tabs"
|
|
|
|
style="@style/TabsList"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
2013-01-25 01:08:08 +00:00
|
|
|
android:choiceMode="singleChoice"
|
2013-01-18 19:58:45 +00:00
|
|
|
android:visibility="gone"
|
|
|
|
gecko:tabs="tabs_private"/>
|
|
|
|
|
|
|
|
<org.mozilla.gecko.RemoteTabs android:id="@+id/synced_tabs"
|
|
|
|
style="@style/RemoteTabsList"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:visibility="gone"
|
|
|
|
android:paddingLeft="@dimen/tabs_panel_list_padding"
|
|
|
|
android:paddingRight="@dimen/tabs_panel_list_padding"
|
|
|
|
android:scrollbarStyle="outsideOverlay"/>
|
|
|
|
|
|
|
|
</view>
|
|
|
|
|
2013-01-29 23:57:52 +00:00
|
|
|
<RelativeLayout android:id="@+id/tabs_panel_footer"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="@dimen/browser_toolbar_height">
|
2013-01-16 19:26:48 +00:00
|
|
|
|
2013-01-18 19:58:45 +00:00
|
|
|
<view class="org.mozilla.gecko.TabsPanel$TabsPanelToolbar"
|
|
|
|
android:layout_width="fill_parent"
|
2013-01-29 23:57:52 +00:00
|
|
|
android:layout_height="fill_parent"
|
2013-02-13 16:50:56 +00:00
|
|
|
android:background="@color/background_tabs_dark">
|
2013-01-16 22:04:53 +00:00
|
|
|
|
2013-01-18 19:58:45 +00:00
|
|
|
<include layout="@layout/tabs_panel_footer"/>
|
2013-01-16 22:04:53 +00:00
|
|
|
|
2013-01-18 19:58:45 +00:00
|
|
|
</view>
|
2013-01-16 19:26:48 +00:00
|
|
|
|
2013-01-29 23:57:52 +00:00
|
|
|
<View android:layout_width="fill_parent"
|
|
|
|
android:layout_height="2dp"
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:background="#1A000000"/>
|
|
|
|
|
|
|
|
</RelativeLayout>
|
2013-01-16 19:26:48 +00:00
|
|
|
|
|
|
|
</merge>
|