Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/news-android.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Luhmer <david-dev@live.de>2022-03-27 19:20:33 +0300
committerDavid Luhmer <david-dev@live.de>2022-03-27 19:20:33 +0300
commite41e159be51c1b3d1268ae300d5c00d578d91942 (patch)
tree936d0fc1298ddc816f75e6bbd8b517f60afd864f /News-Android-App/src/main/res/layout
parent9856005c94cd05292acd70052ec1e2e3898f021a (diff)
optimize podcast playback / fix seek / fix rotate
Diffstat (limited to 'News-Android-App/src/main/res/layout')
-rw-r--r--News-Android-App/src/main/res/layout/fragment_podcast.xml19
1 files changed, 17 insertions, 2 deletions
diff --git a/News-Android-App/src/main/res/layout/fragment_podcast.xml b/News-Android-App/src/main/res/layout/fragment_podcast.xml
index 9e484085..e69f26f6 100644
--- a/News-Android-App/src/main/res/layout/fragment_podcast.xml
+++ b/News-Android-App/src/main/res/layout/fragment_podcast.xml
@@ -205,6 +205,18 @@
android:textSize="18sp"
android:textColor="@color/divider_row_color"/>
+ <Button
+ android:id="@+id/btn_exit_podcast"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:gravity="center"
+ android:text="@string/exit_playback"
+ android:textSize="18sp"
+ android:textColor="@color/primaryTextColor"
+ android:background="@color/colorPrimary"
+ android:layout_marginBottom="16dp"
+ android:layout_alignBottom="@id/tv_no_podcasts_available" />
+
<!--
<it.gmariotti.cardslib.library.view.CardGridView
android:layout_width="match_parent"
@@ -257,7 +269,8 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/primaryTextColor"
- tools:text="00:00"
+ tools:text="000:00"
+ android:minWidth="50dp"
android:layout_gravity="center_vertical" />
@@ -295,7 +308,9 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/primaryTextColor"
- tools:text="00:00"
+ android:gravity="right"
+ tools:text="000:00"
+ android:minWidth="50dp"
android:layout_gravity="center_vertical" />
</LinearLayout>