summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/fragment_sync_list.xml
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/res/layout/fragment_sync_list.xml')
-rw-r--r--app/src/main/res/layout/fragment_sync_list.xml20
1 files changed, 20 insertions, 0 deletions
diff --git a/app/src/main/res/layout/fragment_sync_list.xml b/app/src/main/res/layout/fragment_sync_list.xml
new file mode 100644
index 0000000..c14b302
--- /dev/null
+++ b/app/src/main/res/layout/fragment_sync_list.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="utf-8"?>
+<ViewSwitcher xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:tools="http://schemas.android.com/tools"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ tools:context=".SyncListFragment">
+
+ <include
+ android:id="@+id/list"
+ layout="@layout/fragment_sync_list_list"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent" />
+
+ <include
+ android:id="@+id/empty_view"
+ layout="@layout/fragment_sync_list_empty"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"/>
+
+</ViewSwitcher>