mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 12:37:37 +00:00
cfef9d53f0
--HG-- rename : mobile/android/base/resources/layout-xlarge-v11/tabs_panel_toolbar_menu.xml => mobile/android/base/resources/layout-xlarge-v11/tabs_panel_header.xml rename : mobile/android/base/resources/layout/tabs_panel_toolbar_menu.xml => mobile/android/base/resources/layout/tabs_panel_header.xml extra : rebase_source : c8611c910c442439ce46807362a29a3086b6460a
29 lines
1.3 KiB
XML
29 lines
1.3 KiB
XML
<?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">
|
|
|
|
<ImageButton android:id="@+id/add_tab"
|
|
android:layout_width="@dimen/browser_toolbar_height"
|
|
android:layout_height="@dimen/browser_toolbar_height"
|
|
android:padding="14dip"
|
|
android:src="@drawable/tab_new_level"
|
|
android:contentDescription="@string/new_tab"
|
|
android:background="@drawable/action_bar_button"/>
|
|
|
|
<View android:layout_width="0dip"
|
|
android:layout_height="@dimen/browser_toolbar_height"
|
|
android:layout_weight="1.0"/>
|
|
|
|
<ImageButton android:id="@+id/menu"
|
|
android:layout_width="@dimen/browser_toolbar_height"
|
|
android:layout_height="@dimen/browser_toolbar_height"
|
|
android:padding="14dip"
|
|
android:src="@drawable/tabs_menu"
|
|
android:contentDescription="@string/menu"
|
|
android:background="@drawable/action_bar_button"/>
|
|
|
|
</merge>
|