aboutsummaryrefslogtreecommitdiff
path: root/res/layout/abstract_list_fragment.xml
diff options
context:
space:
mode:
authorScott Jackson <daneren2005@gmail.com>2013-11-08 19:10:40 -0800
committerScott Jackson <daneren2005@gmail.com>2013-11-08 19:10:40 -0800
commitb7a29c6058b9e0f1ddb493f55e933062b913484e (patch)
tree7e0992e615c6d56b9a4d44e46ab8c9ec3707dbfe /res/layout/abstract_list_fragment.xml
parent423b719ad2fde340ed013abfbca57f29d0b78f81 (diff)
downloaddsub-b7a29c6058b9e0f1ddb493f55e933062b913484e.tar.gz
dsub-b7a29c6058b9e0f1ddb493f55e933062b913484e.tar.bz2
dsub-b7a29c6058b9e0f1ddb493f55e933062b913484e.zip
Removed some duplicate layouts
Diffstat (limited to 'res/layout/abstract_list_fragment.xml')
-rw-r--r--res/layout/abstract_list_fragment.xml29
1 files changed, 29 insertions, 0 deletions
diff --git a/res/layout/abstract_list_fragment.xml b/res/layout/abstract_list_fragment.xml
new file mode 100644
index 00000000..bfce4792
--- /dev/null
+++ b/res/layout/abstract_list_fragment.xml
@@ -0,0 +1,29 @@
+<?xml version="1.0" encoding="utf-8"?>
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:id="@+id/fragment_list_layout"
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent"
+ android:orientation="vertical" >
+
+ <View
+ android:layout_width="fill_parent"
+ android:layout_height="1px"
+ android:background="@color/dividerColor"/>
+
+ <include layout="@layout/tab_progress" />
+
+ <TextView
+ android:id="@+id/fragment_list_empty"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:padding="10dip"
+ android:text="@string/common.empty"
+ android:visibility="gone" />
+
+ <ListView
+ android:id="@+id/fragment_list"
+ android:layout_width="fill_parent"
+ android:layout_height="0dip"
+ android:layout_weight="1.0"
+ android:fastScrollEnabled="true"/>
+</LinearLayout>