aboutsummaryrefslogtreecommitdiff
path: root/subsonic-android/res/layout/home.xml
diff options
context:
space:
mode:
authorScott Jackson <daneren2005@gmail.com>2013-03-09 10:03:23 -0800
committerScott Jackson <daneren2005@gmail.com>2013-03-09 10:03:23 -0800
commit613d6a816cb656007b067a85b72e684d3464595b (patch)
tree32b7aa694228713e2d5eb77ae4302ce33444cefa /subsonic-android/res/layout/home.xml
parent5169f1181a45c0cefbb812c8a68f7e492dcef45f (diff)
downloaddsub-613d6a816cb656007b067a85b72e684d3464595b.tar.gz
dsub-613d6a816cb656007b067a85b72e684d3464595b.tar.bz2
dsub-613d6a816cb656007b067a85b72e684d3464595b.zip
Renamed main layout to home, music to main
Diffstat (limited to 'subsonic-android/res/layout/home.xml')
-rw-r--r--subsonic-android/res/layout/home.xml28
1 files changed, 28 insertions, 0 deletions
diff --git a/subsonic-android/res/layout/home.xml b/subsonic-android/res/layout/home.xml
new file mode 100644
index 00000000..56b013fe
--- /dev/null
+++ b/subsonic-android/res/layout/home.xml
@@ -0,0 +1,28 @@
+<?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">
+
+ <View
+ android:layout_width="fill_parent"
+ android:layout_height="1px"
+ android:background="@color/dividerColor"/>
+
+ <ListView
+ android:id="@+id/main_list"
+ android:layout_width="fill_parent"
+ android:layout_height="0px"
+ android:layout_weight="1"/>
+
+ <View android:id="@+id/main_dummy"
+ android:layout_width="0px"
+ android:layout_height="0px"/>
+
+ <include
+ layout="@layout/button_bar"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"/>
+
+</LinearLayout>
+