aboutsummaryrefslogtreecommitdiff
path: root/res/layout/select_album.xml
diff options
context:
space:
mode:
authorScott Jackson <daneren2005@gmail.com>2014-04-19 13:42:57 -0700
committerScott Jackson <daneren2005@gmail.com>2014-04-19 13:42:57 -0700
commitc1fd0b3fb0103d687f5f3a1f5fb26038b3b12c6b (patch)
tree1095af9eba10ce658a3cb2835d629eeaff7cce96 /res/layout/select_album.xml
parent2afc4b04e4774f5a7b8ce4cf5b907c0d2e8fbe98 (diff)
downloaddsub-c1fd0b3fb0103d687f5f3a1f5fb26038b3b12c6b.tar.gz
dsub-c1fd0b3fb0103d687f5f3a1f5fb26038b3b12c6b.tar.bz2
dsub-c1fd0b3fb0103d687f5f3a1f5fb26038b3b12c6b.zip
Fix color bar being under server message
Diffstat (limited to 'res/layout/select_album.xml')
-rw-r--r--res/layout/select_album.xml45
1 files changed, 22 insertions, 23 deletions
diff --git a/res/layout/select_album.xml b/res/layout/select_album.xml
index 55747a18..9b1e36dd 100644
--- a/res/layout/select_album.xml
+++ b/res/layout/select_album.xml
@@ -1,38 +1,37 @@
<?xml version="1.0" encoding="utf-8"?>
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/select_album_layout"
- android:orientation="vertical"
+<android.support.v4.widget.SwipeRefreshLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:id="@+id/refresh_layout"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
- <View
+ <LinearLayout
+ android:id="@+id/select_album_layout"
+ android:orientation="vertical"
android:layout_width="fill_parent"
- android:layout_height="1px"
- android:background="@color/dividerColor"/>
+ android:layout_height="fill_parent">
- <include layout="@layout/tab_progress"/>
+ <View
+ android:layout_width="fill_parent"
+ android:layout_height="1px"
+ android:background="@color/dividerColor"/>
- <TextView
- android:id="@+id/select_album_empty"
- android:text="@string/select_album.empty"
- android:visibility="gone"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:padding="10dip"/>
+ <include layout="@layout/tab_progress"/>
- <android.support.v4.widget.SwipeRefreshLayout
- android:id="@+id/refresh_layout"
- android:layout_width="fill_parent"
- android:layout_height="0dip"
- android:layout_weight="1.0">
+ <TextView
+ android:id="@+id/select_album_empty"
+ android:text="@string/select_album.empty"
+ android:visibility="gone"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:padding="10dip"/>
<com.mobeta.android.dslv.DragSortListView
style="@style/DragDropListView"
android:id="@+id/select_album_entries"
android:textFilterEnabled="true"
android:layout_width="fill_parent"
- android:layout_height="fill_parent"
+ android:layout_height="0dip"
+ android:layout_weight="1.0"
android:fastScrollEnabled="true"/>
-
- </android.support.v4.widget.SwipeRefreshLayout>
-</LinearLayout> \ No newline at end of file
+ </LinearLayout>
+</android.support.v4.widget.SwipeRefreshLayout> \ No newline at end of file