1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/mobile/android/base/resources/layout/actionbar.xml Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,31 @@ 1.4 +<?xml version="1.0" encoding="utf-8"?> 1.5 +<!-- This Source Code Form is subject to the terms of the Mozilla Public 1.6 + - License, v. 2.0. If a copy of the MPL was not distributed with this 1.7 + - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> 1.8 + 1.9 +<merge xmlns:android="http://schemas.android.com/apk/res/android"> 1.10 + 1.11 + <Button android:id="@+id/actionmode_title" 1.12 + android:layout_height="fill_parent" 1.13 + android:layout_width="wrap_content" 1.14 + style="@style/GeckoActionBar.Title"/> 1.15 + 1.16 + <!-- Draw a separator to the left of the title --> 1.17 + <View android:layout_height="fill_parent" 1.18 + android:layout_width="1dp" 1.19 + android:layout_marginTop="10dp" 1.20 + android:layout_marginBottom="10dp" 1.21 + android:background="@color/text_color_secondary_inverse"/> 1.22 + 1.23 + <LinearLayout android:id="@+id/actionbar_buttons" 1.24 + android:layout_height="fill_parent" 1.25 + android:layout_width="0dip" 1.26 + android:layout_weight="1" 1.27 + style="@style/GeckoActionBar.Buttons"/> 1.28 + 1.29 + <ImageButton android:id="@+id/actionbar_menu" 1.30 + android:layout_height="fill_parent" 1.31 + android:layout_width="@dimen/browser_toolbar_icon_width" 1.32 + style="@style/GeckoActionBar.Button.MenuButton"/> 1.33 + 1.34 +</merge>