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.

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

mercurial