diff options
Diffstat (limited to 'res/layout')
-rw-r--r-- | res/layout/suggestion_item.xml | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/res/layout/suggestion_item.xml b/res/layout/suggestion_item.xml index c08ba84..17b01ba 100644 --- a/res/layout/suggestion_item.xml +++ b/res/layout/suggestion_item.xml @@ -32,14 +32,15 @@ android:layout_height="match_parent" android:layout_weight="1" android:orientation="horizontal" - android:background="@drawable/suggest_item_selector"> + android:background="@drawable/suggest_item_selector" + android:padding="0dp"> <ImageView android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/icon1" android:layout_gravity="center_vertical" - style="@style/HoloIcon" - android:layout_marginRight="16dip" /> + android:layout_marginLeft="@dimen/suggest_item_padding" + android:layout_marginRight="@dimen/suggest_item_padding" /> <LinearLayout android:layout_width="0dip" android:layout_height="wrap_content" @@ -69,12 +70,12 @@ /> <ImageView android:layout_width="wrap_content" - android:layout_height="wrap_content" + android:layout_height="match_parent" android:id="@+id/icon2" android:scaleType="center" android:src="@drawable/ic_add_string" - android:background="?android:attr/activatedBackgroundIndicator" - style="@style/HoloButton" - android:layout_marginRight="16dip" + android:background="@drawable/suggest_item_selector" + android:paddingRight="@dimen/suggest_item_padding" + android:paddingLeft="@dimen/suggest_item_padding" /> </LinearLayout> |