mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 12:37:37 +00:00
56 lines
3.0 KiB
XML
56 lines
3.0 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"
|
|
xmlns:gecko="http://schemas.android.com/apk/res-auto">
|
|
|
|
<ImageButton android:id="@+id/favicon"
|
|
style="@style/UrlBar.ImageButton"
|
|
android:layout_width="@dimen/browser_toolbar_favicon_size"
|
|
android:layout_height="fill_parent"
|
|
android:scaleType="fitCenter"
|
|
android:layout_marginLeft="8dip"
|
|
android:paddingLeft="4dip"
|
|
android:paddingRight="4dip"
|
|
android:layout_gravity="center_vertical"/>
|
|
|
|
<ImageButton android:id="@+id/site_security"
|
|
style="@style/UrlBar.ImageButton"
|
|
android:layout_width="@dimen/browser_toolbar_lock_width"
|
|
android:scaleType="fitCenter"
|
|
android:layout_marginLeft="-4dip"
|
|
android:src="@drawable/site_security_level"
|
|
android:contentDescription="@string/site_security"
|
|
android:visibility="gone"/>
|
|
|
|
<org.mozilla.gecko.widget.GeckoTextView android:id="@+id/url_bar_title"
|
|
style="@style/UrlBar.Button"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:layout_weight="1.0"
|
|
android:singleLine="true"
|
|
android:paddingRight="8dp"
|
|
android:textColor="@color/url_bar_title"
|
|
android:textColorHint="@color/url_bar_title_hint"
|
|
android:gravity="center_vertical|left"
|
|
android:hint="@string/url_bar_default_text"
|
|
android:layout_gravity="center_vertical"
|
|
gecko:autoUpdateTheme="false"/>
|
|
|
|
<org.mozilla.gecko.toolbar.PageActionLayout android:id="@+id/page_action_layout"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginRight="@dimen/browser_toolbar_button_padding"
|
|
android:visibility="gone"
|
|
android:orientation="horizontal"/>
|
|
|
|
<ImageButton android:id="@+id/stop"
|
|
style="@style/UrlBar.ImageButton.Icon"
|
|
android:src="@drawable/urlbar_stop"
|
|
android:contentDescription="@string/stop"
|
|
android:visibility="gone"/>
|
|
|
|
</merge>
|