summaryrefslogtreecommitdiff
path: root/app/src/main/res
diff options
context:
space:
mode:
authorByteHamster <info@bytehamster.com>2020-05-20 17:06:22 +0200
committerByteHamster <info@bytehamster.com>2020-05-20 17:06:22 +0200
commit1b05c12670edbd2f6deba99875690b87e4a30e53 (patch)
tree3b96e4e5cc54aaa030d79eeedadf67bda56b4449 /app/src/main/res
parent44f35cb1f19443634cc921a1addc6f500a9a3850 (diff)
downloadAntennaPod-1b05c12670edbd2f6deba99875690b87e4a30e53.zip
Do not resize seekbar to make it easier to grab
Diffstat (limited to 'app/src/main/res')
-rw-r--r--app/src/main/res/layout/audioplayer_fragment.xml27
1 files changed, 17 insertions, 10 deletions
diff --git a/app/src/main/res/layout/audioplayer_fragment.xml b/app/src/main/res/layout/audioplayer_fragment.xml
index 37c30b4dd..5b4e26b69 100644
--- a/app/src/main/res/layout/audioplayer_fragment.xml
+++ b/app/src/main/res/layout/audioplayer_fragment.xml
@@ -43,16 +43,13 @@
android:foreground="?android:windowContentOverlay"
android:layout_marginBottom="12dp"/>
- <SeekBar
- android:id="@+id/sbPosition"
+ <ImageView
android:layout_width="match_parent"
- android:layout_height="24dp"
- android:max="500"
- tools:progress="100"
- android:layout_above="@id/playtime_layout"
- android:layout_marginLeft="8dp"
- android:layout_marginRight="8dp"
- android:layoutDirection="ltr" />
+ android:layout_height="8dp"
+ android:layout_alignBottom="@id/pager"
+ android:src="@drawable/bg_gradient"
+ app:tint="?android:attr/windowBackground"
+ android:importantForAccessibility="no"/>
<LinearLayout
android:id="@+id/playtime_layout"
@@ -63,12 +60,22 @@
android:layoutDirection="ltr"
android:orientation="vertical">
+ <SeekBar
+ android:id="@+id/sbPosition"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:max="500"
+ tools:progress="100"
+ android:layout_marginLeft="8dp"
+ android:layout_marginRight="8dp" />
+
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingLeft="8dp"
android:paddingRight="8dp"
- android:layout_marginBottom="4dp">
+ android:layout_marginBottom="4dp"
+ android:layout_marginTop="4dp">
<TextView
android:id="@+id/txtvPosition"