diff options
author | Scott Jackson <daneren2005@gmail.com> | 2015-01-03 16:56:13 -0800 |
---|---|---|
committer | Scott Jackson <daneren2005@gmail.com> | 2015-01-03 16:56:13 -0800 |
commit | 05a279b66c2a0b1d2f1b40cc0df6163576aa1e49 (patch) | |
tree | 3df4977679ff38a4db52b1504cf5c84044f271c2 | |
parent | ec63a0fc0c28c5b9d8af6c972e8ef6ec5ab4e0cf (diff) | |
download | dsub-05a279b66c2a0b1d2f1b40cc0df6163576aa1e49.tar.gz dsub-05a279b66c2a0b1d2f1b40cc0df6163576aa1e49.tar.bz2 dsub-05a279b66c2a0b1d2f1b40cc0df6163576aa1e49.zip |
Increase right margin a bit so more button is selectable
-rw-r--r-- | res/layout/album_list_item.xml | 3 | ||||
-rw-r--r-- | res/layout/basic_list_item.xml | 3 | ||||
-rw-r--r-- | res/layout/complex_list_item.xml | 3 | ||||
-rw-r--r-- | res/layout/song_list_item.xml | 3 | ||||
-rw-r--r-- | res/layout/user_list_item.xml | 3 | ||||
-rw-r--r-- | res/values/styles.xml | 4 |
6 files changed, 9 insertions, 10 deletions
diff --git a/res/layout/album_list_item.xml b/res/layout/album_list_item.xml index f0d6eb97..202843b6 100644 --- a/res/layout/album_list_item.xml +++ b/res/layout/album_list_item.xml @@ -70,6 +70,5 @@ android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_gravity="right|center_vertical"
- android:paddingRight="10dip"
- style="@style/BasicButton"/>
+ style="@style/MoreButton"/>
</LinearLayout>
diff --git a/res/layout/basic_list_item.xml b/res/layout/basic_list_item.xml index 84526324..f40aef2e 100644 --- a/res/layout/basic_list_item.xml +++ b/res/layout/basic_list_item.xml @@ -33,6 +33,5 @@ android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_gravity="right|center_vertical"
- android:paddingRight="10dip"
- style="@style/BasicButton"/>
+ style="@style/MoreButton"/>
</LinearLayout>
\ No newline at end of file diff --git a/res/layout/complex_list_item.xml b/res/layout/complex_list_item.xml index 421295f2..a36cb2f6 100644 --- a/res/layout/complex_list_item.xml +++ b/res/layout/complex_list_item.xml @@ -45,6 +45,5 @@ android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_gravity="right|center_vertical"
- android:paddingRight="10dip"
- style="@style/BasicButton"/>
+ style="@style/MoreButton"/>
</LinearLayout>
\ No newline at end of file diff --git a/res/layout/song_list_item.xml b/res/layout/song_list_item.xml index 1ea118ad..67d460f1 100644 --- a/res/layout/song_list_item.xml +++ b/res/layout/song_list_item.xml @@ -122,6 +122,5 @@ android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_gravity="right|center_vertical"
- android:paddingRight="10dip"
- style="@style/BasicButton"/>
+ style="@style/MoreButton"/>
</LinearLayout>
diff --git a/res/layout/user_list_item.xml b/res/layout/user_list_item.xml index c4092894..ac408295 100644 --- a/res/layout/user_list_item.xml +++ b/res/layout/user_list_item.xml @@ -40,6 +40,5 @@ android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_gravity="right|center_vertical"
- android:paddingRight="10dip"
- style="@style/BasicButton"/>
+ style="@style/MoreButton"/>
</LinearLayout>
\ No newline at end of file diff --git a/res/values/styles.xml b/res/values/styles.xml index e32811fa..43271afd 100644 --- a/res/values/styles.xml +++ b/res/values/styles.xml @@ -4,6 +4,10 @@ <item name="android:background">@drawable/abc_item_background_holo_light</item> </style> + <style name="MoreButton" parent="BasicButton"> + <item name="android:paddingRight">14dip</item> + </style> + <style name="PlaybackControl" parent="@style/BasicButton"> <item name="android:scaleType">fitCenter</item> <item name="android:padding">6dip</item> |