Yorke Lee | 53a2230 | 2014-04-29 18:13:46 -0700 | [diff] [blame^] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <LinearLayout |
| 3 | xmlns:android="http://schemas.android.com/apk/res/android" |
| 4 | android:layout_width="match_parent" |
| 5 | android:layout_height="match_parent" |
| 6 | android:id="@+id/search_view_container" |
| 7 | android:orientation="horizontal" |
| 8 | android:layout_marginTop="@dimen/search_top_margin" |
| 9 | android:layout_marginBottom="@dimen/search_bottom_margin" |
| 10 | android:layout_marginLeft="@dimen/search_margin_horizontal" |
| 11 | android:layout_marginRight="@dimen/search_margin_horizontal" |
| 12 | android:paddingLeft="@dimen/search_box_left_padding" |
| 13 | android:paddingRight="@dimen/search_box_right_padding" |
| 14 | android:background="@drawable/search_bg" |
| 15 | android:gravity="center_vertical" |
| 16 | > |
| 17 | <EditText |
| 18 | android:id="@+id/search_view" |
| 19 | android:layout_width="0dp" |
| 20 | android:layout_height="@dimen/search_box_icon_size" |
| 21 | android:layout_weight="1" |
| 22 | android:layout_marginLeft="@dimen/search_box_text_left_margin" |
| 23 | android:textSize="@dimen/search_text_size" |
| 24 | android:fontFamily="@string/search_font_family" |
| 25 | android:textColor="@color/searchbox_text_color" |
| 26 | android:textColorHint="@color/searchbox_hint_text_color" |
| 27 | android:hint="@string/dialer_hint_find_contact" |
| 28 | android:inputType="textFilter"/> |
| 29 | <ImageView |
| 30 | android:id="@+id/search_close_button" |
| 31 | android:layout_height="@dimen/search_box_icon_size" |
| 32 | android:layout_width="@dimen/search_box_icon_size" |
| 33 | android:padding="6dp" |
| 34 | android:src="@drawable/ic_close_dk" |
| 35 | android:clickable="true" |
| 36 | android:background="?android:attr/selectableItemBackground" |
| 37 | android:contentDescription="@string/description_clear_search" |
| 38 | android:visibility="gone" /> |
| 39 | <ImageView |
| 40 | android:id="@+id/voice_search_button" |
| 41 | android:layout_height="@dimen/search_box_icon_size" |
| 42 | android:layout_width="@dimen/search_box_icon_size" |
| 43 | android:padding="@dimen/search_box_icon_padding" |
| 44 | android:src="@drawable/ic_voice_search" |
| 45 | android:clickable="true" |
| 46 | android:contentDescription="@string/description_start_voice_search" |
| 47 | android:background="?android:attr/selectableItemBackground" /> |
| 48 | </LinearLayout> |