summaryrefslogtreecommitdiff
path: root/org.fox.ttrss/src/main/res
diff options
context:
space:
mode:
authorAndrew Dolgov <fox@fakecake.org>2025-05-17 11:51:52 +0300
committerAndrew Dolgov <fox@fakecake.org>2025-05-17 11:51:52 +0300
commit526681bbf9e1a1b1e33f388b8073a75e33285679 (patch)
treed8d8459cb2ba3021576c5b1b20518d949d74cc2f /org.fox.ttrss/src/main/res
parent69c0752daaaa2615bee3bd51913e65e85f40dad4 (diff)
add a loading progress indicator for feeds in case of extremely slow connections
Diffstat (limited to 'org.fox.ttrss/src/main/res')
-rwxr-xr-xorg.fox.ttrss/src/main/res/layout/fragment_feeds.xml10
1 files changed, 10 insertions, 0 deletions
diff --git a/org.fox.ttrss/src/main/res/layout/fragment_feeds.xml b/org.fox.ttrss/src/main/res/layout/fragment_feeds.xml
index 9f57dda2..277d5d3f 100755
--- a/org.fox.ttrss/src/main/res/layout/fragment_feeds.xml
+++ b/org.fox.ttrss/src/main/res/layout/fragment_feeds.xml
@@ -60,6 +60,16 @@
android:textAppearance="?attr/textAppearanceTitleSmall"
android:textColor="?attr/colorOnSurfaceVariant"/>
</LinearLayout>
+
+ <com.google.android.material.progressindicator.LinearProgressIndicator
+ android:id="@+id/loading_progress"
+ android:max="100"
+ android:progress="50"
+ android:visibility="gone"
+ android:indeterminate="false"
+ android:layout_gravity="bottom"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content" />
</FrameLayout>
</com.google.android.material.appbar.AppBarLayout>