2014-01-09 14:55:28 +00:00
|
|
|
<?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:scaleType="fitCenter"
|
|
|
|
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"/>
|
|
|
|
|
2014-04-02 22:56:52 +00:00
|
|
|
<org.mozilla.gecko.widget.ThemedTextView android:id="@+id/url_bar_title"
|
2014-08-18 09:40:06 +00:00
|
|
|
style="@style/UrlBar.Title"
|
2014-06-20 16:21:31 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2014-04-02 22:56:52 +00:00
|
|
|
android:layout_weight="1.0"
|
|
|
|
gecko:autoUpdateTheme="false"/>
|
2014-01-09 14:55:28 +00:00
|
|
|
|
|
|
|
<org.mozilla.gecko.toolbar.PageActionLayout android:id="@+id/page_action_layout"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:visibility="gone"
|
|
|
|
android:orientation="horizontal"/>
|
|
|
|
|
|
|
|
<ImageButton android:id="@+id/stop"
|
2014-08-18 09:40:07 +00:00
|
|
|
android:layout_width="@dimen/page_action_button_width"
|
|
|
|
android:layout_height="match_parent"
|
2014-01-09 14:55:28 +00:00
|
|
|
android:src="@drawable/urlbar_stop"
|
|
|
|
android:contentDescription="@string/stop"
|
2014-08-18 09:40:07 +00:00
|
|
|
android:background="#00ffffff"
|
2014-01-09 14:55:28 +00:00
|
|
|
android:visibility="gone"/>
|
|
|
|
|
|
|
|
</merge>
|