aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/fragment_list_view.xml
diff options
context:
space:
mode:
authorPacien TRAN-GIRARD2017-07-15 11:53:43 +0200
committerPacien TRAN-GIRARD2017-07-15 11:53:43 +0200
commit75fb7ba17f5977b146f166412eaf39705a5f4e73 (patch)
treeb7e06d28e3215e152a6018861bbf72a619a89d16 /app/src/main/res/layout/fragment_list_view.xml
parenta2f166f907b7c7ac6f1e0ed6ff8c0637800f6b91 (diff)
downloadtincapp-75fb7ba17f5977b146f166412eaf39705a5f4e73.tar.gz
Refactor common list views
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>