summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/fragment_sync_list.xml
blob: c14b302b43ebb43f14a61b36526db396ecc1e150 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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>