diff options
author | Scott Jackson <daneren2005@gmail.com> | 2013-11-10 20:57:21 -0800 |
---|---|---|
committer | Scott Jackson <daneren2005@gmail.com> | 2013-11-10 20:57:21 -0800 |
commit | f9a1c9a8e207e773cf5373344efab2751e1931d4 (patch) | |
tree | 82b5eafa299773f99fc0354ce6a55cfe2efa6e3a | |
parent | 4656ce51bad7e2a7ac538c7dea3c6a29e284b84f (diff) | |
download | dsub-f9a1c9a8e207e773cf5373344efab2751e1931d4.tar.gz dsub-f9a1c9a8e207e773cf5373344efab2751e1931d4.tar.bz2 dsub-f9a1c9a8e207e773cf5373344efab2751e1931d4.zip |
Increase right padding so context buttons are pressable
-rw-r--r-- | res/layout/album_list_item.xml | 2 | ||||
-rw-r--r-- | res/layout/basic_list_item.xml | 2 | ||||
-rw-r--r-- | res/layout/song_list_item.xml | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/res/layout/album_list_item.xml b/res/layout/album_list_item.xml index 51b45b5d..9051a72e 100644 --- a/res/layout/album_list_item.xml +++ b/res/layout/album_list_item.xml @@ -55,6 +55,6 @@ android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_gravity="right|center_vertical"
- android:paddingRight="6dip"
+ android:paddingRight="10dip"
android:background="@drawable/menubar_button"/>
</LinearLayout>
diff --git a/res/layout/basic_list_item.xml b/res/layout/basic_list_item.xml index a9d77abb..2295a9ba 100644 --- a/res/layout/basic_list_item.xml +++ b/res/layout/basic_list_item.xml @@ -33,6 +33,6 @@ android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_gravity="right|center_vertical"
- android:paddingRight="6dip"
+ android:paddingRight="10dip"
android:background="@drawable/menubar_button"/>
</LinearLayout>
\ No newline at end of file diff --git a/res/layout/song_list_item.xml b/res/layout/song_list_item.xml index 6d262056..e6bef279 100644 --- a/res/layout/song_list_item.xml +++ b/res/layout/song_list_item.xml @@ -91,6 +91,6 @@ android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_gravity="right|center_vertical"
- android:paddingRight="6dip"
+ android:paddingRight="10dip"
android:background="@drawable/menubar_button"/>
</LinearLayout>
|