aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/layout
diff options
context:
space:
mode:
authorScott Jackson <daneren2005@gmail.com>2016-08-31 17:34:52 -0700
committerScott Jackson <daneren2005@gmail.com>2016-08-31 17:34:52 -0700
commitd8c5a9f8b4b58489e113c637d358ba64df899a42 (patch)
tree9c776dabbe74a62e3ff9b878618e2dddee36058b /app/src/main/res/layout
parentc4314ab102d6660d3c556efb8753420d496c997b (diff)
downloaddsub-d8c5a9f8b4b58489e113c637d358ba64df899a42.tar.gz
dsub-d8c5a9f8b4b58489e113c637d358ba64df899a42.tar.bz2
dsub-d8c5a9f8b4b58489e113c637d358ba64df899a42.zip
Fixes #726: Add custom playback speed
Diffstat (limited to 'app/src/main/res/layout')
-rw-r--r--app/src/main/res/layout/set_playback_speed.xml22
1 files changed, 22 insertions, 0 deletions
diff --git a/app/src/main/res/layout/set_playback_speed.xml b/app/src/main/res/layout/set_playback_speed.xml
new file mode 100644
index 00000000..42f23a35
--- /dev/null
+++ b/app/src/main/res/layout/set_playback_speed.xml
@@ -0,0 +1,22 @@
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:orientation="horizontal"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:layout_gravity="center">
+
+ <TextView
+ android:id="@+id/playback_speed_label"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_marginLeft="8dp"
+ android:textSize="20dp"
+ android:paddingRight="10px"
+ android:layout_gravity="center"
+ android:textColor="?android:textColorPrimary"/>
+
+ <SeekBar
+ android:id="@+id/playback_speed_bar"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:max="25"/>
+</LinearLayout> \ No newline at end of file