aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/app/src/main/res/layout/app_list_dialog_fragment.xml
blob: 50e795d5fcfcac6d60a0e8a12701c6eb576dcc12 (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
<?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">

    <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}" />

        <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}" />

    </FrameLayout>


</layout>