summaryrefslogtreecommitdiff
path: root/app/src/main/res
diff options
context:
space:
mode:
authorByteHamster <ByteHamster@users.noreply.github.com>2021-07-30 23:22:43 +0200
committerGitHub <noreply@github.com>2021-07-30 23:22:43 +0200
commitc3b35f7d8db6223ff13897807ea4140b05bffc67 (patch)
tree086cb9c9f1431177828edf0e6fe670f8b8d128b3 /app/src/main/res
parent05e6119f034e3a41e49e77abb483f0fd9275bc07 (diff)
parent1193cd400e582a50fa8a41c866c846412d4e47cc (diff)
downloadAntennaPod-c3b35f7d8db6223ff13897807ea4140b05bffc67.zip
Merge pull request #5312 from ByteHamster/opml-activity
Rework of OPML import internals
Diffstat (limited to 'app/src/main/res')
-rw-r--r--app/src/main/res/layout/opml_selection.xml63
1 files changed, 34 insertions, 29 deletions
diff --git a/app/src/main/res/layout/opml_selection.xml b/app/src/main/res/layout/opml_selection.xml
index 1f1d72d76..735c7f87e 100644
--- a/app/src/main/res/layout/opml_selection.xml
+++ b/app/src/main/res/layout/opml_selection.xml
@@ -1,39 +1,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">
+ 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"
- style="@style/Widget.MaterialComponents.Button.TextButton"
- android:layout_margin="8dp"
- android:text="@string/confirm_label"/>
+ 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"
- style="@style/Widget.MaterialComponents.Button.TextButton"
- android:layout_margin="8dp"
- android:text="@string/cancel_label"/>
+ 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">
- </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>