diff options
Diffstat (limited to 'app/src/main/res/layout/start_timer.xml')
-rw-r--r-- | app/src/main/res/layout/start_timer.xml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/app/src/main/res/layout/start_timer.xml b/app/src/main/res/layout/start_timer.xml new file mode 100644 index 00000000..9736a31d --- /dev/null +++ b/app/src/main/res/layout/start_timer.xml @@ -0,0 +1,21 @@ +<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/timer_length_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"/> + + <SeekBar + android:id="@+id/timer_length_bar" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:max="97"/> +</LinearLayout>
\ No newline at end of file |