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

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

     1 <?xml version="1.0" encoding="utf-8"?>
     2 <!-- This Source Code Form is subject to the terms of the Mozilla Public
     3    - License, v. 2.0. If a copy of the MPL was not distributed with this
     4    - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
     6 <merge xmlns:android="http://schemas.android.com/apk/res/android"
     7        xmlns:gecko="http://schemas.android.com/apk/res-auto">
     9     <org.mozilla.gecko.toolbar.ToolbarEditText
    10           android:id="@+id/url_edit_text"
    11           style="@style/UrlBar.Button"
    12           android:layout_width="fill_parent"
    13           android:layout_height="fill_parent"
    14           android:layout_weight="1.0"
    15           android:hint="@string/url_bar_default_text"
    16           android:textColor="@color/url_bar_title"
    17           android:textColorHint="@color/url_bar_title_hint"
    18           android:textColorHighlight="@color/url_bar_text_highlight"
    19           android:textSelectHandle="@drawable/handle_middle"
    20           android:textSelectHandleLeft="@drawable/handle_start"
    21           android:textSelectHandleRight="@drawable/handle_end"
    22           android:textCursorDrawable="@null"
    23           android:inputType="textUri|textNoSuggestions"
    24           android:imeOptions="actionGo|flagNoExtractUi|flagNoFullscreen"
    25           android:selectAllOnFocus="true"
    26           android:singleLine="true"
    27           android:gravity="center_vertical|left"
    28           gecko:autoUpdateTheme="false"/>
    30 </merge>

mercurial