summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout
diff options
context:
space:
mode:
authorByteHamster <ByteHamster@users.noreply.github.com>2022-12-18 21:08:52 +0100
committerGitHub <noreply@github.com>2022-12-18 21:08:52 +0100
commitfbfd7c43ac1d6970acf43c2ef2a7819a9150e15e (patch)
tree3f8a1f65662355740d785f816c937db66b52e07a /app/src/main/res/layout
parent3acec11322c2ef523f575db77e5d5a3de82d4d61 (diff)
parentc478b49b1e95b71335e56e021df8a69306401c08 (diff)
downloadAntennaPod-fbfd7c43ac1d6970acf43c2ef2a7819a9150e15e.zip
Merge pull request #6246 from ByteHamster/revert-loading-dummy
Revert back to showing progress bars while loading
Diffstat (limited to 'app/src/main/res/layout')
-rw-r--r--app/src/main/res/layout/episodes_list_fragment.xml10
-rw-r--r--app/src/main/res/layout/feed_item_list_fragment.xml8
-rw-r--r--app/src/main/res/layout/fragment_subscriptions.xml8
-rw-r--r--app/src/main/res/layout/queue_fragment.xml8
4 files changed, 34 insertions, 0 deletions
diff --git a/app/src/main/res/layout/episodes_list_fragment.xml b/app/src/main/res/layout/episodes_list_fragment.xml
index bfe7581fe..3d59bcddc 100644
--- a/app/src/main/res/layout/episodes_list_fragment.xml
+++ b/app/src/main/res/layout/episodes_list_fragment.xml
@@ -47,6 +47,16 @@
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
+ <ProgressBar
+ android:id="@+id/progressBar"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:gravity="center"
+ android:indeterminateOnly="true"
+ android:visibility="gone"
+ android:layout_centerInParent="true"
+ tools:background="@android:color/holo_red_light" />
+
<include
layout="@layout/multi_select_speed_dial" />
diff --git a/app/src/main/res/layout/feed_item_list_fragment.xml b/app/src/main/res/layout/feed_item_list_fragment.xml
index b96789ba2..a4288ef2d 100644
--- a/app/src/main/res/layout/feed_item_list_fragment.xml
+++ b/app/src/main/res/layout/feed_item_list_fragment.xml
@@ -59,6 +59,14 @@
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
+ <ProgressBar
+ android:id="@+id/progressBar"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_gravity="center"
+ android:indeterminateOnly="true"
+ android:visibility="gone" />
+
<include
android:id="@+id/more_content"
android:layout_width="match_parent"
diff --git a/app/src/main/res/layout/fragment_subscriptions.xml b/app/src/main/res/layout/fragment_subscriptions.xml
index b19387cb0..5585dedbd 100644
--- a/app/src/main/res/layout/fragment_subscriptions.xml
+++ b/app/src/main/res/layout/fragment_subscriptions.xml
@@ -52,6 +52,14 @@
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
+ <ProgressBar
+ android:id="@+id/progressBar"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_centerInParent="true"
+ android:indeterminateOnly="true"
+ android:visibility="visible" />
+
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/subscriptions_add"
android:layout_width="56dp"
diff --git a/app/src/main/res/layout/queue_fragment.xml b/app/src/main/res/layout/queue_fragment.xml
index 0845044f0..67b8eda80 100644
--- a/app/src/main/res/layout/queue_fragment.xml
+++ b/app/src/main/res/layout/queue_fragment.xml
@@ -48,6 +48,14 @@
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
+ <ProgressBar
+ android:id="@+id/progressBar"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_centerInParent="true"
+ android:indeterminateOnly="true"
+ android:visibility="gone" />
+
<include
layout="@layout/multi_select_speed_dial" />