blob: 9eb2ea6506237f97f68f258c3396042cea3a0c51 [file] [log] [blame]
Yorke Lee53a22302014-04-29 18:13:46 -07001<?xml version="1.0" encoding="utf-8"?>
Andrew Leeb1903842014-05-15 16:11:24 -07002<view class="com.android.dialer.widget.SearchEditTextLayout"
Yorke Lee53a22302014-04-29 18:13:46 -07003 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"
Yorke Lee75862682014-05-19 14:02:33 -070014 android:background="@drawable/rounded_corner_bg"
Yorke Lee53a22302014-04-29 18:13:46 -070015 android:gravity="center_vertical"
Yorke Lee75862682014-05-19 14:02:33 -070016 android:elevation="@dimen/search_box_elevation"
Yorke Lee53a22302014-04-29 18:13:46 -070017 >
Andrew Leed4cde832014-05-16 15:56:48 -070018 <ImageView
19 android:id="@+id/search_magnifying_glass"
20 android:layout_height="@dimen/search_box_icon_size"
21 android:layout_width="@dimen/search_box_icon_size"
22 android:layout_margin="@dimen/search_box_icon_margin"
23 android:padding="@dimen/search_box_search_icon_padding"
24 android:src="@drawable/ic_ab_search" />
Yorke Lee53a22302014-04-29 18:13:46 -070025 <EditText
26 android:id="@+id/search_view"
27 android:layout_width="0dp"
28 android:layout_height="@dimen/search_box_icon_size"
29 android:layout_weight="1"
30 android:layout_marginLeft="@dimen/search_box_text_left_margin"
31 android:textSize="@dimen/search_text_size"
32 android:fontFamily="@string/search_font_family"
33 android:textColor="@color/searchbox_text_color"
34 android:textColorHint="@color/searchbox_hint_text_color"
35 android:hint="@string/dialer_hint_find_contact"
36 android:inputType="textFilter"/>
37 <ImageView
38 android:id="@+id/search_close_button"
39 android:layout_height="@dimen/search_box_icon_size"
40 android:layout_width="@dimen/search_box_icon_size"
Andrew Leed4cde832014-05-16 15:56:48 -070041 android:layout_margin="@dimen/search_box_icon_margin"
Yorke Lee53a22302014-04-29 18:13:46 -070042 android:src="@drawable/ic_close_dk"
43 android:clickable="true"
44 android:background="?android:attr/selectableItemBackground"
45 android:contentDescription="@string/description_clear_search"
46 android:visibility="gone" />
47 <ImageView
48 android:id="@+id/voice_search_button"
49 android:layout_height="@dimen/search_box_icon_size"
50 android:layout_width="@dimen/search_box_icon_size"
Andrew Leed4cde832014-05-16 15:56:48 -070051 android:layout_margin="@dimen/search_box_icon_margin"
Yorke Lee53a22302014-04-29 18:13:46 -070052 android:src="@drawable/ic_voice_search"
53 android:clickable="true"
54 android:contentDescription="@string/description_start_voice_search"
55 android:background="?android:attr/selectableItemBackground" />
Andrew Leee74a10e2014-05-16 14:31:40 -070056 <ImageButton
57 android:id="@+id/dialtacts_options_menu_button"
58 android:layout_width="@dimen/search_box_icon_size"
59 android:layout_height="@dimen/search_box_icon_size"
Andrew Leed4cde832014-05-16 15:56:48 -070060 android:layout_margin="@dimen/search_box_icon_margin"
Andrew Leee74a10e2014-05-16 14:31:40 -070061 android:background="?android:attr/selectableItemBackground"
62 android:src="@drawable/ic_overflow_menu"
63 android:tint="@color/searchbox_options_menu_color" />
Andrew Leeb1903842014-05-15 16:11:24 -070064</view>