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

        <!--suppress AndroidDomInspection -->
        <variable
            name="profiles"
            type="android.databinding.ObservableArrayMap&lt;String, com.wireguard.config.Profile&gt;" />
    </data>

    <ListView
        android:id="@+id/profile_list"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:items="@{profiles}"
        app:layout="@{@layout/profile_list_item}" />
</layout>