diff options
| author | Joel Klinghed <the_jk@spawned.biz> | 2025-02-20 22:59:50 +0100 |
|---|---|---|
| committer | Joel Klinghed <the_jk@spawned.biz> | 2025-02-20 22:59:50 +0100 |
| commit | ab3d085e9e883b0a146e55aa9f80aaf0b326c4aa (patch) | |
| tree | 6cca0cba1ed7b5138b8f519656e73deb9442f963 /app/src/main/res/layout/fragment_sync_list.xml | |
| parent | d18325aa04d0c1053aae3aec47c5dca495d65e78 (diff) | |
WIPWIP
Diffstat (limited to 'app/src/main/res/layout/fragment_sync_list.xml')
| -rw-r--r-- | app/src/main/res/layout/fragment_sync_list.xml | 20 |
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> |
