mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-03 23:19:50 +00:00
32 lines
1.3 KiB
XML
32 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">
|
|
|
|
<Button android:id="@+id/actionmode_title"
|
|
android:layout_height="match_parent"
|
|
android:layout_width="wrap_content"
|
|
style="@style/GoannaActionBar.Title"/>
|
|
|
|
<!-- Draw a separator to the left of the title -->
|
|
<View android:layout_height="match_parent"
|
|
android:layout_width="1dp"
|
|
android:layout_marginTop="10dp"
|
|
android:layout_marginBottom="10dp"
|
|
android:background="@color/text_color_secondary_inverse"/>
|
|
|
|
<LinearLayout android:id="@+id/actionbar_buttons"
|
|
android:layout_height="match_parent"
|
|
android:layout_width="0dip"
|
|
android:layout_weight="1"
|
|
style="@style/GoannaActionBar.Buttons"/>
|
|
|
|
<ImageButton android:id="@+id/actionbar_menu"
|
|
android:layout_height="match_parent"
|
|
android:layout_width="@dimen/browser_toolbar_icon_width"
|
|
style="@style/GoannaActionBar.Button.MenuButton"/>
|
|
|
|
</merge>
|