summaryrefslogtreecommitdiff
path: root/app/src/main/res
diff options
context:
space:
mode:
authorByteHamster <ByteHamster@users.noreply.github.com>2021-10-12 21:14:08 +0200
committerGitHub <noreply@github.com>2021-10-12 21:14:08 +0200
commita73a932a7c773f09a9bb3965448fe3b4ccfe8ab2 (patch)
tree6beff65a62be04455ce223c60b0082f6bd5694e9 /app/src/main/res
parentf6c8a8c0f785d26ee2374d52df44842997ed5956 (diff)
downloadAntennaPod-a73a932a7c773f09a9bb3965448fe3b4ccfe8ab2.zip
Move speed dialog to the bottom (#5464)
Diffstat (limited to 'app/src/main/res')
-rw-r--r--app/src/main/res/layout/playback_speed_seek_bar.xml72
1 files changed, 37 insertions, 35 deletions
diff --git a/app/src/main/res/layout/playback_speed_seek_bar.xml b/app/src/main/res/layout/playback_speed_seek_bar.xml
index 0d3985f5a..8c9b1725f 100644
--- a/app/src/main/res/layout/playback_speed_seek_bar.xml
+++ b/app/src/main/res/layout/playback_speed_seek_bar.xml
@@ -1,43 +1,45 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal"
- android:gravity="center_vertical">
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:orientation="horizontal"
+ android:gravity="center_vertical">
<TextView
- android:id="@+id/butDecSpeed"
- android:layout_width="32dp"
- android:layout_height="32dp"
- android:gravity="center"
- android:text="-"
- android:clickable="true"
- android:focusable="true"
- android:textStyle="bold"
- android:textSize="24sp"
- android:textColor="?attr/colorSecondary"
- android:contentDescription="@string/decrease_speed"
- android:background="?attr/selectableItemBackgroundBorderless"/>
+ android:id="@+id/butDecSpeed"
+ android:layout_width="40dp"
+ android:layout_height="40dp"
+ android:gravity="center"
+ android:text="-"
+ android:clickable="true"
+ android:focusable="true"
+ android:textStyle="bold"
+ android:textSize="24sp"
+ android:textColor="?attr/colorSecondary"
+ android:contentDescription="@string/decrease_speed"
+ android:background="?attr/selectableItemBackgroundBorderless" />
<SeekBar
- android:id="@+id/playback_speed"
- android:layout_width="0dp"
- android:layout_height="32dp"
- android:max="70"
- android:layout_weight="1" />
+ android:id="@+id/playback_speed"
+ android:layout_width="0dp"
+ android:layout_height="wrap_content"
+ android:max="70"
+ android:paddingVertical="4dp"
+ android:layout_weight="1" />
<TextView
- android:id="@+id/butIncSpeed"
- android:layout_width="32dp"
- android:layout_height="32dp"
- android:gravity="center"
- android:text="+"
- android:clickable="true"
- android:focusable="true"
- android:textStyle="bold"
- android:textSize="24sp"
- android:textColor="?attr/colorSecondary"
- android:contentDescription="@string/increase_speed"
- android:background="?attr/selectableItemBackgroundBorderless" />
-</LinearLayout> \ No newline at end of file
+ android:id="@+id/butIncSpeed"
+ android:layout_width="40dp"
+ android:layout_height="40dp"
+ android:gravity="center"
+ android:text="+"
+ android:clickable="true"
+ android:focusable="true"
+ android:textStyle="bold"
+ android:textSize="24sp"
+ android:textColor="?attr/colorSecondary"
+ android:contentDescription="@string/increase_speed"
+ android:background="?attr/selectableItemBackgroundBorderless" />
+
+</LinearLayout>