diff options
author | Matt A. Tobin <email@mattatobin.com> | 2019-04-23 15:32:23 -0400 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2019-04-23 15:32:23 -0400 |
commit | abe80cc31d5a40ebed743085011fbcda0c1a9a10 (patch) | |
tree | fb3762f06b84745b182af281abb107b95a9fcf01 /mobile/android/base/resources/layout/tabs_panel_default.xml | |
parent | 63295d0087eb58a6eb34cad324c4c53d1b220491 (diff) | |
download | UXP-abe80cc31d5a40ebed743085011fbcda0c1a9a10.tar UXP-abe80cc31d5a40ebed743085011fbcda0c1a9a10.tar.gz UXP-abe80cc31d5a40ebed743085011fbcda0c1a9a10.tar.lz UXP-abe80cc31d5a40ebed743085011fbcda0c1a9a10.tar.xz UXP-abe80cc31d5a40ebed743085011fbcda0c1a9a10.zip |
Issue #1053 - Drop support Android and remove Fennec - Part 1a: Remove mobile/android
Diffstat (limited to 'mobile/android/base/resources/layout/tabs_panel_default.xml')
-rw-r--r-- | mobile/android/base/resources/layout/tabs_panel_default.xml | 100 |
1 files changed, 0 insertions, 100 deletions
diff --git a/mobile/android/base/resources/layout/tabs_panel_default.xml b/mobile/android/base/resources/layout/tabs_panel_default.xml deleted file mode 100644 index a5ef871e8..000000000 --- a/mobile/android/base/resources/layout/tabs_panel_default.xml +++ /dev/null @@ -1,100 +0,0 @@ -<?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" - xmlns:gecko="http://schemas.android.com/apk/res-auto"> - - <!-- The layout_height value is used in TabsPanel.getTabsLayoutContainerHeight - and as an offset in PrivateTabsPanel: if you change it here, - change it there! --> - <RelativeLayout android:id="@+id/tabs_panel_header" - android:layout_width="match_parent" - android:layout_height="@dimen/browser_toolbar_height"> - - <view class="org.mozilla.gecko.tabs.TabsPanel$TabsPanelToolbar" - android:layout_width="match_parent" - android:layout_height="@dimen/browser_toolbar_height" - android:background="@color/text_and_tabs_tray_grey"> - - <org.mozilla.gecko.tabs.TabPanelBackButton - android:id="@+id/nav_back" - android:layout_width="@dimen/tabs_panel_button_width" - android:layout_height="match_parent" - android:minWidth="@dimen/tabs_panel_button_width" - android:src="@drawable/tabs_panel_nav_back" - android:contentDescription="@string/back" - android:background="@drawable/action_bar_button_inverse" - gecko:dividerVerticalPadding="@dimen/tab_panel_divider_vertical_padding" - gecko:rightDivider="@drawable/tab_indicator_divider"/> - - <org.mozilla.gecko.widget.IconTabWidget android:id="@+id/tab_widget" - android:layout_width="wrap_content" - android:layout_height="match_parent" - android:tabStripEnabled="false" - android:divider="@drawable/tab_indicator_divider" - android:dividerPadding="@dimen/tab_panel_divider_vertical_padding" - android:layout="@layout/tabs_panel_indicator"/> - - <View android:layout_width="0dip" - android:layout_height="match_parent" - android:layout_weight="1.0"/> - - <ImageButton android:id="@+id/add_tab" - style="@style/UrlBar.ImageButton" - android:layout_width="@dimen/tabs_panel_button_width" - android:padding="@dimen/browser_toolbar_button_padding" - android:src="@drawable/tab_new" - android:contentDescription="@string/new_tab" - android:background="@drawable/action_bar_button_inverse"/> - - <FrameLayout android:id="@+id/menu" - style="@style/UrlBar.ImageButton" - android:layout_width="@dimen/tabs_panel_button_width" - android:background="@drawable/action_bar_button_inverse" - android:contentDescription="@string/menu"> - - <ImageView - style="@style/UrlBar.ImageButton" - android:layout_width="wrap_content" - android:layout_height="@dimen/browser_toolbar_menu_icon_height" - android:layout_gravity="center" - android:scaleType="centerInside" - android:src="@drawable/menu" - android:tint="@color/tabs_tray_icon_grey"/> - - </FrameLayout> - - </view> - - <View android:layout_width="match_parent" - android:layout_height="2dp" - android:layout_alignParentBottom="true" - android:background="#1A000000"/> - - </RelativeLayout> - - <FrameLayout - android:id="@+id/tabs_container" - android:layout_width="match_parent" - android:layout_height="match_parent"> - - <view class="org.mozilla.gecko.tabs.TabsPanel$TabsLayout" - android:id="@+id/normal_tabs" - style="@style/TabsLayout" - android:layout_width="match_parent" - android:layout_height="match_parent" - android:choiceMode="singleChoice" - android:visibility="gone" - gecko:tabs="tabs_normal"/> - - <org.mozilla.gecko.tabs.PrivateTabsPanel - android:id="@+id/private_tabs_panel" - android:layout_width="match_parent" - android:layout_height="match_parent" - android:visibility="gone"/> - - </FrameLayout> - -</merge> |