summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/opml_selection.xml
blob: 735c7f87e9c233f1a7f4a055b366d8582b5a3bcd (plain)
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
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    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">

    <Button
        android:id="@+id/butConfirm"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_alignParentRight="true"
        android:layout_alignParentEnd="true"
        android:layout_margin="8dp"
        android:text="@string/confirm_label"
        style="@style/Widget.MaterialComponents.Button.TextButton" />

    <Button
        android:id="@+id/butCancel"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_toLeftOf="@+id/butConfirm"
        android:layout_toStartOf="@+id/butConfirm"
        android:layout_margin="8dp"
        android:text="@string/cancel_label"
        style="@style/Widget.MaterialComponents.Button.TextButton" />

    <ListView
        android:id="@+id/feedlist"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_above="@id/butConfirm"
        android:layout_alignParentTop="true"
        tools:listitem="@android:layout/simple_list_item_multiple_choice" />

    <ProgressBar
        android:id="@+id/progressBar"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true" />

</RelativeLayout>