diff options
author | Andrew Lee <anwlee@google.com> | 2014-05-16 21:36:57 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2014-05-16 21:36:58 +0000 |
commit | 7a67eab3a6e5e323934f12819eba9a72a604916f (patch) | |
tree | 2b50380391324e097244f09c40728c2937bc04f6 /res | |
parent | 6c02922d6b3c4a2872d25f8377309339df8001f6 (diff) | |
parent | e74a10eab5d8a43918a540bc42f0c159bdf5ab7c (diff) |
Merge "Move actionbar menu into menu button in search edit text."
Diffstat (limited to 'res')
-rw-r--r-- | res/layout/search_edittext.xml | 8 | ||||
-rw-r--r-- | res/values/colors.xml | 1 |
2 files changed, 9 insertions, 0 deletions
diff --git a/res/layout/search_edittext.xml b/res/layout/search_edittext.xml index f44cc0b6d..a20935f30 100644 --- a/res/layout/search_edittext.xml +++ b/res/layout/search_edittext.xml @@ -45,4 +45,12 @@ android:clickable="true" android:contentDescription="@string/description_start_voice_search" android:background="?android:attr/selectableItemBackground" /> + <ImageButton + android:id="@+id/dialtacts_options_menu_button" + android:layout_width="@dimen/search_box_icon_size" + android:layout_height="@dimen/search_box_icon_size" + android:padding="@dimen/search_box_icon_padding" + android:background="?android:attr/selectableItemBackground" + android:src="@drawable/ic_overflow_menu" + android:tint="@color/searchbox_options_menu_color" /> </view>
\ No newline at end of file diff --git a/res/values/colors.xml b/res/values/colors.xml index 28b78963c..301d4162f 100644 --- a/res/values/colors.xml +++ b/res/values/colors.xml @@ -59,6 +59,7 @@ <color name="searchbox_text_color">#000000</color> <!-- Text color of the search box hint text --> <color name="searchbox_hint_text_color">#d3d3d3</color> + <color name="searchbox_options_menu_color">#d5d5d5</color> <!-- Color of the contact name in favorite tiles --> <color name="contact_tile_name_color">#ffffff</color> |