diff options
author | Yorke Lee <yorkelee@google.com> | 2013-10-03 15:41:11 -0700 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2013-10-03 15:41:11 -0700 |
commit | 1e1d34534f36be66a27ae03d03de6dcea271edad (patch) | |
tree | 74786e097d3c9dcd00ff23dc072af7ae774f7079 /res | |
parent | 0e3d7951a3864c9f4f730c48985de6d6d83d0ee9 (diff) | |
parent | a028ca2cc2e0c33b1c26c8e29f9db64c41a392a6 (diff) |
am a028ca2c: am 50893bea: Merge "Fix divider view not animating" into klp-dev
* commit 'a028ca2cc2e0c33b1c26c8e29f9db64c41a392a6':
Fix divider view not animating
Diffstat (limited to 'res')
-rw-r--r-- | res/layout/dialtacts_activity.xml | 76 |
1 files changed, 41 insertions, 35 deletions
diff --git a/res/layout/dialtacts_activity.xml b/res/layout/dialtacts_activity.xml index fe1e644b0..e0eb41b99 100644 --- a/res/layout/dialtacts_activity.xml +++ b/res/layout/dialtacts_activity.xml @@ -31,43 +31,49 @@ <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" - android:paddingLeft="16dp" - android:paddingRight="23dp" android:id="@+id/search_view_container" - android:background="@color/searchbox_background_color" - android:orientation="horizontal" - android:gravity="center_vertical"> - <EditText - android:id="@+id/search_view" - android:layout_width="0dp" - android:layout_height="56dp" - android:layout_weight="1" - android:textSize="@dimen/search_text_size" - android:inputType="textFilter"/> - <ImageView - android:id="@+id/search_close_button" - android:layout_height="40dp" - android:layout_width="40dp" - android:padding="6dp" - android:src="@drawable/ic_close_dk" - android:clickable="true" - android:background="?android:attr/selectableItemBackground" - android:visibility="gone" /> - <ImageView - android:id="@+id/voice_search_button" - android:layout_height="40dp" - android:layout_width="40dp" - android:padding="6dp" - android:src="@drawable/ic_voice_search" - android:clickable="true" - android:contentDescription="@string/description_start_voice_search" - android:background="?android:attr/selectableItemBackground" /> + android:orientation="vertical" + > + <LinearLayout + android:layout_width="match_parent" + android:layout_height="match_parent" + android:orientation="horizontal" + android:paddingLeft="16dp" + android:paddingRight="23dp" + android:background="@color/searchbox_background_color" + android:gravity="center_vertical"> + <EditText + android:id="@+id/search_view" + android:layout_width="0dp" + android:layout_height="56dp" + android:layout_weight="1" + android:textSize="@dimen/search_text_size" + android:inputType="textFilter"/> + <ImageView + android:id="@+id/search_close_button" + android:layout_height="40dp" + android:layout_width="40dp" + android:padding="6dp" + android:src="@drawable/ic_close_dk" + android:clickable="true" + android:background="?android:attr/selectableItemBackground" + android:visibility="gone" /> + <ImageView + android:id="@+id/voice_search_button" + android:layout_height="40dp" + android:layout_width="40dp" + android:padding="6dp" + android:src="@drawable/ic_voice_search" + android:clickable="true" + android:contentDescription="@string/description_start_voice_search" + android:background="?android:attr/selectableItemBackground" /> + </LinearLayout> + <View + android:id="@+id/searchbox_divider" + android:layout_height="1dp" + android:layout_width="match_parent" + android:background="@color/background_dialer_light" /> </LinearLayout> - <View - android:id="@+id/searchbox_divider" - android:layout_height="1dp" - android:layout_width="match_parent" - android:background="@color/background_dialer_light" /> <FrameLayout android:layout_height="0dp" android:layout_weight="1" |