blob: ff9cabbfdc2eb44689be50da21b4ab55e92288b9 [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 Leeec489fb2014-05-19 15:39:27 -070014 android:background="@drawable/rounded_corner"
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"
Yorke Lee36d04532014-05-19 13:50:13 -070036 android:longClickable="false"
Yorke Lee53a22302014-04-29 18:13:46 -070037 android:inputType="textFilter"/>
38 <ImageView
39 android:id="@+id/search_close_button"
40 android:layout_height="@dimen/search_box_icon_size"
41 android:layout_width="@dimen/search_box_icon_size"
Andrew Leed4cde832014-05-16 15:56:48 -070042 android:layout_margin="@dimen/search_box_icon_margin"
Yorke Lee53a22302014-04-29 18:13:46 -070043 android:src="@drawable/ic_close_dk"
44 android:clickable="true"
45 android:background="?android:attr/selectableItemBackground"
46 android:contentDescription="@string/description_clear_search"
47 android:visibility="gone" />
48 <ImageView
49 android:id="@+id/voice_search_button"
50 android:layout_height="@dimen/search_box_icon_size"
51 android:layout_width="@dimen/search_box_icon_size"
Andrew Leed4cde832014-05-16 15:56:48 -070052 android:layout_margin="@dimen/search_box_icon_margin"
Yorke Lee53a22302014-04-29 18:13:46 -070053 android:src="@drawable/ic_voice_search"
54 android:clickable="true"
55 android:contentDescription="@string/description_start_voice_search"
56 android:background="?android:attr/selectableItemBackground" />
Andrew Leee74a10e2014-05-16 14:31:40 -070057 <ImageButton
58 android:id="@+id/dialtacts_options_menu_button"
59 android:layout_width="@dimen/search_box_icon_size"
60 android:layout_height="@dimen/search_box_icon_size"
Andrew Leed4cde832014-05-16 15:56:48 -070061 android:layout_margin="@dimen/search_box_icon_margin"
Andrew Leee74a10e2014-05-16 14:31:40 -070062 android:background="?android:attr/selectableItemBackground"
63 android:src="@drawable/ic_overflow_menu"
64 android:tint="@color/searchbox_options_menu_color" />
Yorke Leefaaab202014-05-19 21:08:50 +000065</view>