|
1 <?xml version="1.0" encoding="utf-8"?> |
|
2 <merge xmlns:android="http://schemas.android.com/apk/res/android"> |
|
3 |
|
4 <view class="org.mozilla.gecko.CustomEditText" |
|
5 android:id="@+id/find_text" |
|
6 android:layout_width="0dip" |
|
7 android:layout_height="wrap_content" |
|
8 android:layout_weight="1.0" |
|
9 android:layout_marginLeft="5dip" |
|
10 android:layout_marginRight="5dip" |
|
11 android:contentDescription="@string/find_text" |
|
12 android:background="@drawable/url_bar_entry" |
|
13 android:singleLine="true" |
|
14 android:textColor="#000000" |
|
15 android:textCursorDrawable="@null" |
|
16 android:inputType="text" |
|
17 android:paddingLeft="15dip" |
|
18 android:paddingRight="15dip" |
|
19 android:textColorHighlight="@color/url_bar_text_highlight" |
|
20 android:imeOptions="actionSearch" |
|
21 android:selectAllOnFocus="true" |
|
22 android:gravity="center_vertical|left"/> |
|
23 |
|
24 <ImageButton android:id="@+id/find_prev" |
|
25 style="@style/FindBar.ImageButton" |
|
26 android:contentDescription="@string/find_prev" |
|
27 android:src="@drawable/find_prev"/> |
|
28 |
|
29 <ImageButton android:id="@+id/find_next" |
|
30 style="@style/FindBar.ImageButton" |
|
31 android:contentDescription="@string/find_next" |
|
32 android:src="@drawable/find_next"/> |
|
33 |
|
34 <ImageButton android:id="@+id/find_close" |
|
35 style="@style/FindBar.ImageButton" |
|
36 android:contentDescription="@string/find_close" |
|
37 android:src="@drawable/find_close"/> |
|
38 |
|
39 </merge> |