diff options
author | Scott Jackson <daneren2005@gmail.com> | 2014-07-08 19:15:54 -0700 |
---|---|---|
committer | Scott Jackson <daneren2005@gmail.com> | 2014-07-08 19:15:54 -0700 |
commit | 1486d1bf9f42a9bbefe15d66eb7b4095d939c4cb (patch) | |
tree | 735862d5558484bf71476051946ee7e0fdbc46e1 /res/layout | |
parent | c076b88eb012a9cc0147d7b1b426cc4c8a1d838e (diff) | |
download | dsub-1486d1bf9f42a9bbefe15d66eb7b4095d939c4cb.tar.gz dsub-1486d1bf9f42a9bbefe15d66eb7b4095d939c4cb.tar.bz2 dsub-1486d1bf9f42a9bbefe15d66eb7b4095d939c4cb.zip |
#321 For video files just display on single line
Diffstat (limited to 'res/layout')
-rw-r--r-- | res/layout/song_list_item.xml | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/res/layout/song_list_item.xml b/res/layout/song_list_item.xml index 3bf7ab44..72ee298b 100644 --- a/res/layout/song_list_item.xml +++ b/res/layout/song_list_item.xml @@ -64,10 +64,12 @@ android:visibility="gone"/>
</LinearLayout>
- <LinearLayout android:orientation="horizontal"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_gravity="center_vertical">
+ <LinearLayout
+ android:id="@+id/song_bottom"
+ android:orientation="horizontal"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:layout_gravity="center_vertical">
<TextView
android:id="@+id/song_artist"
|