diff options
author | Scott Jackson <daneren2005@gmail.com> | 2014-06-02 19:55:52 -0700 |
---|---|---|
committer | Scott Jackson <daneren2005@gmail.com> | 2014-06-02 19:55:52 -0700 |
commit | e9f4e0430cf96a21958e986c998f2ad47375275d (patch) | |
tree | fd2b2baca7f3fff0e964e3f9340f448eb0af1647 /res | |
parent | 30516c513bb7174e91dbc338c2011c6a300d069d (diff) | |
download | dsub-e9f4e0430cf96a21958e986c998f2ad47375275d.tar.gz dsub-e9f4e0430cf96a21958e986c998f2ad47375275d.tar.bz2 dsub-e9f4e0430cf96a21958e986c998f2ad47375275d.zip |
Tweak start_timer layout
Diffstat (limited to 'res')
-rw-r--r-- | res/layout/start_timer.xml | 38 |
1 files changed, 17 insertions, 21 deletions
diff --git a/res/layout/start_timer.xml b/res/layout/start_timer.xml index eb2ccbe8..9736a31d 100644 --- a/res/layout/start_timer.xml +++ b/res/layout/start_timer.xml @@ -1,25 +1,21 @@ <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" - android:orientation="vertical" - android:layout_width="fill_parent" - android:layout_height="wrap_content"> + android:orientation="horizontal" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:layout_gravity="center"> - <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" - android:orientation="horizontal" - android:layout_width="fill_parent" - android:layout_height="wrap_content"> - - <TextView - android:id="@+id/timer_length_label" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:layout_marginLeft="8dp" - android:textSize="20dp"/> + <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:layout_weight="1" - android:max="97"/> - </LinearLayout> + <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 |