aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/app/src/main/res/layout/app_list_dialog_fragment.xml
blob: c91161e6170eb5d8fcb9a9976a34b12fabcadf81 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools">

    <data>

        <import type="android.view.View" />

        <import type="com.wireguard.android.model.ApplicationData" />

        <variable
            name="fragment"
            type="com.wireguard.android.fragment.AppListDialogFragment" />

        <variable
            name="appData"
            type="com.wireguard.android.util.ObservableKeyedList&lt;String, ApplicationData&gt;" />
    </data>

    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:minHeight="200dp">

        <ProgressBar
            android:id="@+id/progress_bar"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:indeterminate="true"
            android:visibility="@{appData.isEmpty() ? View.VISIBLE : View.GONE}"
            tools:visibility="gone" />

        <androidx.recyclerview.widget.RecyclerView
            android:id="@+id/app_list"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:items="@{appData}"
            app:layout="@{@layout/app_list_item}"
            tools:itemCount="10"
            tools:listitem="@layout/app_list_item" />

    </FrameLayout>


</layout>