mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 12:37:37 +00:00
37 lines
1.7 KiB
XML
37 lines
1.7 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">
|
|
|
|
<org.mozilla.gecko.toolbar.ToolbarEditText
|
|
android:id="@+id/url_edit_text"
|
|
style="@style/UrlBar.Button"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:layout_weight="1.0"
|
|
android:hint="@string/url_bar_default_text"
|
|
android:textColor="@color/url_bar_title"
|
|
android:textColorHint="@color/url_bar_title_hint"
|
|
android:textColorHighlight="@color/url_bar_text_highlight"
|
|
android:textSelectHandle="@drawable/handle_middle"
|
|
android:textSelectHandleLeft="@drawable/handle_start"
|
|
android:textSelectHandleRight="@drawable/handle_end"
|
|
android:textCursorDrawable="@null"
|
|
android:inputType="textUri|textNoSuggestions"
|
|
android:imeOptions="actionGo|flagNoExtractUi|flagNoFullscreen"
|
|
android:selectAllOnFocus="true"
|
|
android:singleLine="true"
|
|
android:gravity="center_vertical|left"
|
|
gecko:autoUpdateTheme="false"/>
|
|
|
|
<ImageButton android:id="@+id/go"
|
|
style="@style/UrlBar.ImageButton.Icon"
|
|
android:src="@drawable/ic_url_bar_go"
|
|
android:contentDescription="@string/go"
|
|
android:visibility="gone"/>
|
|
|
|
</merge>
|