mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-07 08:59:08 +00:00
44 lines
1.7 KiB
XML
44 lines
1.7 KiB
XML
<!-- 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">
|
|
|
|
<org.mozilla.search.ui.BackCaptureEditText
|
|
android:id="@+id/edit_text"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:imeOptions="actionSearch"
|
|
android:inputType="textNoSuggestions"
|
|
android:drawableLeft="@drawable/search_icon_inactive"
|
|
android:drawablePadding="5dp"
|
|
android:textSize="@dimen/query_text_size"
|
|
android:focusable="false"
|
|
android:focusableInTouchMode="false"
|
|
android:textColorHighlight="@color/highlight_orange"
|
|
android:textSelectHandle="@drawable/handle_middle"
|
|
android:textSelectHandleLeft="@drawable/handle_start"
|
|
android:textSelectHandleRight="@drawable/handle_end" />
|
|
|
|
<ImageButton
|
|
android:id="@+id/clear_button"
|
|
android:layout_width="30dp"
|
|
android:layout_height="30dp"
|
|
android:paddingLeft="10dp"
|
|
android:layout_gravity="right|center_vertical"
|
|
android:background="@android:color/transparent"
|
|
android:src="@drawable/search_clear"
|
|
android:scaleType="centerInside"
|
|
android:visibility="gone"/>
|
|
|
|
<ImageView
|
|
android:id="@+id/engine_icon"
|
|
android:layout_width="24dp"
|
|
android:layout_height="24dp"
|
|
android:layout_gravity="right|center_vertical"
|
|
android:background="@android:color/transparent"
|
|
android:visibility="gone"/>
|
|
|
|
</merge>
|