diff options
author | Scott Jackson <daneren2005@gmail.com> | 2013-03-09 10:22:48 -0800 |
---|---|---|
committer | Scott Jackson <daneren2005@gmail.com> | 2013-03-09 10:22:48 -0800 |
commit | 321ac57465e72f704f7348943e082e892bccbb4d (patch) | |
tree | d3ab70ad959ef52eac3c3bc0017d722fa2522985 /subsonic-android/res | |
parent | 613d6a816cb656007b067a85b72e684d3464595b (diff) | |
download | dsub-321ac57465e72f704f7348943e082e892bccbb4d.tar.gz dsub-321ac57465e72f704f7348943e082e892bccbb4d.tar.bz2 dsub-321ac57465e72f704f7348943e082e892bccbb4d.zip |
Fix artist album selection
Diffstat (limited to 'subsonic-android/res')
-rw-r--r-- | subsonic-android/res/layout/select_artist.xml | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/subsonic-android/res/layout/select_artist.xml b/subsonic-android/res/layout/select_artist.xml index bebfdec4..4dd3471f 100644 --- a/subsonic-android/res/layout/select_artist.xml +++ b/subsonic-android/res/layout/select_artist.xml @@ -1,24 +1,24 @@ <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="vertical"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent">
+ android:id="@+id/select_artist_layout"
+ android:orientation="vertical"
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent">
- <View
- android:layout_width="fill_parent"
- android:layout_height="1px"
- android:background="@color/dividerColor"/>
+ <View
+ android:layout_width="fill_parent"
+ android:layout_height="1px"
+ android:background="@color/dividerColor"/>
- <include layout="@layout/tab_progress"/>
+ <include layout="@layout/tab_progress"/>
- <ListView android:id="@+id/select_artist_list"
- android:textFilterEnabled="true"
- android:fastScrollEnabled="true"
- android:layout_width="fill_parent"
- android:layout_height="0dip"
- android:layout_weight="1.0"/>
-
- <include layout="@layout/button_bar"/>
+ <ListView android:id="@+id/select_artist_list"
+ android:textFilterEnabled="true"
+ android:fastScrollEnabled="true"
+ android:layout_width="fill_parent"
+ android:layout_height="0dip"
+ android:layout_weight="1.0"/>
+ <include layout="@layout/button_bar"/>
</LinearLayout>
|