mobile/android/base/resources/layout/toolbar_edit_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.

     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