mobile/android/base/resources/layout-large-land-v11/tabs_panel.xml

Wed, 31 Dec 2014 07:22:50 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 07:22:50 +0100
branch
TOR_BUG_3246
changeset 4
fc2d59ddac77
permissions
-rw-r--r--

Correct previous dual key logic pending first delivery installment.

michael@0 1 <?xml version="1.0" encoding="utf-8"?>
michael@0 2 <!-- This Source Code Form is subject to the terms of the Mozilla Public
michael@0 3 - License, v. 2.0. If a copy of the MPL was not distributed with this
michael@0 4 - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
michael@0 5
michael@0 6 <merge xmlns:android="http://schemas.android.com/apk/res/android"
michael@0 7 xmlns:gecko="http://schemas.android.com/apk/res-auto">
michael@0 8
michael@0 9 <RelativeLayout android:id="@+id/tabs_panel_header"
michael@0 10 android:layout_width="fill_parent"
michael@0 11 android:layout_height="@dimen/browser_toolbar_height">
michael@0 12
michael@0 13 <view class="org.mozilla.gecko.TabsPanel$TabsPanelToolbar"
michael@0 14 android:layout_width="fill_parent"
michael@0 15 android:layout_height="fill_parent"
michael@0 16 android:background="@color/background_tabs">
michael@0 17
michael@0 18 <include layout="@layout/tabs_panel_header"/>
michael@0 19
michael@0 20 </view>
michael@0 21
michael@0 22 <View android:layout_width="fill_parent"
michael@0 23 android:layout_height="2dp"
michael@0 24 android:layout_alignParentBottom="true"
michael@0 25 android:background="#1A000000"/>
michael@0 26
michael@0 27 </RelativeLayout>
michael@0 28
michael@0 29 <view class="org.mozilla.gecko.TabsPanel$TabsListContainer"
michael@0 30 android:id="@+id/tabs_container"
michael@0 31 android:layout_width="fill_parent"
michael@0 32 android:layout_height="0dip"
michael@0 33 android:layout_weight="1.0">
michael@0 34
michael@0 35 <org.mozilla.gecko.TabsTray android:id="@+id/normal_tabs"
michael@0 36 style="@style/TabsList"
michael@0 37 android:layout_width="fill_parent"
michael@0 38 android:layout_height="fill_parent"
michael@0 39 android:choiceMode="singleChoice"
michael@0 40 android:visibility="gone"
michael@0 41 gecko:tabs="tabs_normal"/>
michael@0 42
michael@0 43 <org.mozilla.gecko.TabsTray android:id="@+id/private_tabs"
michael@0 44 style="@style/TabsList"
michael@0 45 android:layout_width="fill_parent"
michael@0 46 android:layout_height="fill_parent"
michael@0 47 android:choiceMode="singleChoice"
michael@0 48 android:visibility="gone"
michael@0 49 gecko:tabs="tabs_private"/>
michael@0 50
michael@0 51 <org.mozilla.gecko.RemoteTabsContainer android:id="@+id/synced_tabs"
michael@0 52 android:layout_width="fill_parent"
michael@0 53 android:layout_height="fill_parent"
michael@0 54 android:visibility="gone">
michael@0 55
michael@0 56 <org.mozilla.gecko.RemoteTabsList android:id="@+id/synced_tabs_list"
michael@0 57 style="@style/RemoteTabsList"
michael@0 58 android:layout_width="fill_parent"
michael@0 59 android:layout_height="fill_parent"
michael@0 60 android:paddingLeft="@dimen/tabs_panel_list_padding"
michael@0 61 android:paddingRight="@dimen/tabs_panel_list_padding"
michael@0 62 android:scrollbarStyle="outsideOverlay"/>
michael@0 63
michael@0 64 </org.mozilla.gecko.RemoteTabsContainer>
michael@0 65
michael@0 66 </view>
michael@0 67
michael@0 68 <RelativeLayout android:id="@+id/tabs_panel_footer"
michael@0 69 android:layout_width="fill_parent"
michael@0 70 android:layout_height="@dimen/browser_toolbar_height">
michael@0 71
michael@0 72 <view class="org.mozilla.gecko.TabsPanel$TabsPanelToolbar"
michael@0 73 android:layout_width="fill_parent"
michael@0 74 android:layout_height="fill_parent"
michael@0 75 android:background="@color/background_tabs">
michael@0 76
michael@0 77 <include layout="@layout/tabs_panel_footer"/>
michael@0 78
michael@0 79 </view>
michael@0 80
michael@0 81 <View android:layout_width="fill_parent"
michael@0 82 android:layout_height="2dp"
michael@0 83 android:layout_alignParentTop="true"
michael@0 84 android:background="#1A000000"/>
michael@0 85
michael@0 86 </RelativeLayout>
michael@0 87
michael@0 88 </merge>

mercurial