mobile/android/base/resources/layout/toolbar_display_layout.xml

Wed, 31 Dec 2014 07:22:50 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 07:22:50 +0100
branch
TOR_BUG_3246
changeset 4
fc2d59ddac77
permissions
-rw-r--r--

Correct previous dual key logic pending first delivery installment.

michael@0 1 <?xml version="1.0" encoding="utf-8"?>
michael@0 2 <!-- This Source Code Form is subject to the terms of the Mozilla Public
michael@0 3 - License, v. 2.0. If a copy of the MPL was not distributed with this
michael@0 4 - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
michael@0 5
michael@0 6 <merge xmlns:android="http://schemas.android.com/apk/res/android"
michael@0 7 xmlns:gecko="http://schemas.android.com/apk/res-auto">
michael@0 8
michael@0 9 <ImageButton android:id="@+id/favicon"
michael@0 10 style="@style/UrlBar.ImageButton"
michael@0 11 android:layout_width="@dimen/browser_toolbar_favicon_size"
michael@0 12 android:layout_height="fill_parent"
michael@0 13 android:scaleType="fitCenter"
michael@0 14 android:layout_marginLeft="8dip"
michael@0 15 android:paddingLeft="4dip"
michael@0 16 android:paddingRight="4dip"
michael@0 17 android:layout_gravity="center_vertical"/>
michael@0 18
michael@0 19 <ImageButton android:id="@+id/site_security"
michael@0 20 style="@style/UrlBar.ImageButton"
michael@0 21 android:layout_width="@dimen/browser_toolbar_lock_width"
michael@0 22 android:scaleType="fitCenter"
michael@0 23 android:layout_marginLeft="-4dip"
michael@0 24 android:src="@drawable/site_security_level"
michael@0 25 android:contentDescription="@string/site_security"
michael@0 26 android:visibility="gone"/>
michael@0 27
michael@0 28 <org.mozilla.gecko.widget.ThemedTextView android:id="@+id/url_bar_title"
michael@0 29 style="@style/UrlBar.Button"
michael@0 30 android:layout_width="fill_parent"
michael@0 31 android:layout_height="fill_parent"
michael@0 32 android:layout_weight="1.0"
michael@0 33 android:singleLine="true"
michael@0 34 android:paddingRight="8dp"
michael@0 35 android:textColor="@color/url_bar_title"
michael@0 36 android:textColorHint="@color/url_bar_title_hint"
michael@0 37 android:gravity="center_vertical|left"
michael@0 38 android:hint="@string/url_bar_default_text"
michael@0 39 android:layout_gravity="center_vertical"
michael@0 40 gecko:autoUpdateTheme="false"/>
michael@0 41
michael@0 42 <org.mozilla.gecko.toolbar.PageActionLayout android:id="@+id/page_action_layout"
michael@0 43 android:layout_width="wrap_content"
michael@0 44 android:layout_height="match_parent"
michael@0 45 android:layout_marginRight="@dimen/browser_toolbar_button_padding"
michael@0 46 android:visibility="gone"
michael@0 47 android:orientation="horizontal"/>
michael@0 48
michael@0 49 <ImageButton android:id="@+id/stop"
michael@0 50 style="@style/UrlBar.ImageButton.Icon"
michael@0 51 android:src="@drawable/urlbar_stop"
michael@0 52 android:contentDescription="@string/stop"
michael@0 53 android:visibility="gone"/>
michael@0 54
michael@0 55 </merge>

mercurial