aboutsummaryrefslogtreecommitdiff
path: root/subsonic-android/res
diff options
context:
space:
mode:
authorScott Jackson <daneren2005@gmail.com>2013-07-01 19:09:06 -0700
committerScott Jackson <daneren2005@gmail.com>2013-07-01 19:09:06 -0700
commit7dece3a6e11b113db602db8a6b2dadd5f30ce209 (patch)
tree17e1717a698e1367e1b1b63f2e0ba88354cffd6b /subsonic-android/res
parent9bebdf720ee3326445729a1ca5c046c97d8f503d (diff)
downloaddsub-7dece3a6e11b113db602db8a6b2dadd5f30ce209.tar.gz
dsub-7dece3a6e11b113db602db8a6b2dadd5f30ce209.tar.bz2
dsub-7dece3a6e11b113db602db8a6b2dadd5f30ce209.zip
Remove further unnecessary abstraction
Diffstat (limited to 'subsonic-android/res')
-rw-r--r--subsonic-android/res/layout/select_podcasts.xml45
1 files changed, 22 insertions, 23 deletions
diff --git a/subsonic-android/res/layout/select_podcasts.xml b/subsonic-android/res/layout/select_podcasts.xml
index 3fda5799..ea4fb07c 100644
--- a/subsonic-android/res/layout/select_podcasts.xml
+++ b/subsonic-android/res/layout/select_podcasts.xml
@@ -1,30 +1,29 @@
<?xml version="1.0" encoding="utf-8"?>
-<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/select_podcasts_layout"
- android:layout_width="match_parent"
- android:layout_height="match_parent">
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent"
+ android:orientation="vertical" >
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ <View
android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:orientation="vertical" >
+ android:layout_height="1px"
+ android:background="@color/dividerColor"/>
- <include layout="@layout/tab_progress" />
+ <include layout="@layout/tab_progress" />
- <TextView
- android:id="@+id/select_podcasts_empty"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:padding="10dip"
- android:text="@string/select_podcasts.empty"
- android:visibility="gone" />
+ <TextView
+ android:id="@+id/select_podcasts_empty"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:padding="10dip"
+ android:text="@string/select_podcasts.empty"
+ android:visibility="gone" />
- <ListView
- android:id="@+id/select_podcasts_list"
- android:layout_width="fill_parent"
- android:layout_height="0dip"
- android:layout_weight="1.0"
- android:textFilterEnabled="true"
- android:fastScrollEnabled="true"/>
- </LinearLayout>
-</FrameLayout>
+ <ListView
+ android:id="@+id/select_podcasts_list"
+ android:layout_width="fill_parent"
+ android:layout_height="0dip"
+ android:layout_weight="1.0"
+ android:fastScrollEnabled="true"/>
+</LinearLayout>