diff options
author | Jeffrey Sharkey <> | 2009-03-31 14:59:08 -0700 |
---|---|---|
committer | The Android Open Source Project <initial-contribution@android.com> | 2009-03-31 14:59:08 -0700 |
commit | 3fca10b8cd35276879e8e7361b2b9ee72377ab94 (patch) | |
tree | 612a2748c1889e1f3eff4932bca05558b352950f /res/layout/widget_search.xml | |
parent | 2bbcae19224447c018b87bccff2b7f5e650d18d8 (diff) | |
download | packages_apps_trebuchet-3fca10b8cd35276879e8e7361b2b9ee72377ab94.zip packages_apps_trebuchet-3fca10b8cd35276879e8e7361b2b9ee72377ab94.tar.gz packages_apps_trebuchet-3fca10b8cd35276879e8e7361b2b9ee72377ab94.tar.bz2 |
AI 143792: am: CL 143746 Fix search widget assets to not overlap in landscape mode.
Done by using small button framework assets, but with manual padding adjustments to bring back to original button size.
Original author: jsharkey
Merged from: //branches/cupcake/...
Automated import of CL 143792
Diffstat (limited to 'res/layout/widget_search.xml')
-rw-r--r-- | res/layout/widget_search.xml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/res/layout/widget_search.xml b/res/layout/widget_search.xml index b4c455c..f87d30f 100644 --- a/res/layout/widget_search.xml +++ b/res/layout/widget_search.xml @@ -45,17 +45,19 @@ /> <ImageButton android:id="@+id/search_go_btn" - android:layout_marginLeft="4dip" + android:layout_marginLeft="5dip" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@*android:drawable/ic_btn_search" + style="@style/SearchButton" /> <ImageButton android:id="@+id/search_voice_btn" - android:layout_marginLeft="2dip" + android:layout_marginLeft="4dip" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@android:drawable/ic_btn_speak_now" + style="@style/SearchButton" /> </com.android.launcher.Search> |