aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/fragment_list_view.xml
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/res/layout/fragment_list_view.xml')
-rw-r--r--app/src/main/res/layout/fragment_list_view.xml16
1 files changed, 16 insertions, 0 deletions
diff --git a/app/src/main/res/layout/fragment_list_view.xml b/app/src/main/res/layout/fragment_list_view.xml
new file mode 100644
index 0000000..32e951e
--- /dev/null
+++ b/app/src/main/res/layout/fragment_list_view.xml
@@ -0,0 +1,16 @@
1<android.support.v4.widget.SwipeRefreshLayout
2 xmlns:android="http://schemas.android.com/apk/res/android"
3 android:id="@+id/list_wrapper"
4 android:layout_width="match_parent"
5 android:layout_height="match_parent"
6 android:orientation="vertical">
7
8 <ListView
9 android:id="@+id/list"
10 android:layout_width="match_parent"
11 android:layout_height="match_parent"
12 android:divider="@drawable/horizontal_line"
13 android:footerDividersEnabled="false"
14 android:headerDividersEnabled="false"/>
15
16</android.support.v4.widget.SwipeRefreshLayout>