summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/choose_speed_dialog.xml
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/res/layout/choose_speed_dialog.xml')
-rw-r--r--app/src/main/res/layout/choose_speed_dialog.xml33
1 files changed, 33 insertions, 0 deletions
diff --git a/app/src/main/res/layout/choose_speed_dialog.xml b/app/src/main/res/layout/choose_speed_dialog.xml
new file mode 100644
index 000000000..7fac5261f
--- /dev/null
+++ b/app/src/main/res/layout/choose_speed_dialog.xml
@@ -0,0 +1,33 @@
+<?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="match_parent">
+
+ <LinearLayout
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:orientation="vertical"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_gravity="center_vertical"
+ android:gravity="center"
+ android:layout_margin="16dp"
+ android:background="@color/white">
+
+ <TextView
+ android:id="@+id/txtvSelectedSpeed"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_marginTop="8dp"
+ android:textSize="22sp"
+ android:textStyle="bold"/>
+
+ <SeekBar
+ android:id="@+id/sbSelectSpeed"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_marginBottom="8dp"/>
+
+ </LinearLayout>
+
+</LinearLayout>