1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="wrap_content" android:layout_height="wrap_content"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:textSize="35sp" android:text="@string/WeakUpTitle" android:id="@+id/WeakUpTitle"></TextView> <TextView android:text="@string/SubTitle_time" android:layout_height="wrap_content" android:layout_width="wrap_content" android:layout_below="@+id/WeakUpTitle" android:id="@+id/SubTitle_time" android:textSize="25sp"></TextView> <TimePicker android:layout_height="wrap_content" android:id="@+id/TimePicker01" android:layout_width="wrap_content" android:layout_below="@+id/SubTitle_time"></TimePicker> <TextView android:text="@string/SubTitle_volume" android:layout_height="wrap_content" android:id="@+id/SubTitle_volume" android:layout_below="@+id/TimePicker01" android:textSize="25sp" android:layout_width="fill_parent"></TextView> <SeekBar android:layout_height="wrap_content" android:layout_below="@+id/SubTitle_volume" android:id="@+id/VolumeBar" android:layout_width="match_parent" android:max="7"></SeekBar> <Button android:layout_height="wrap_content" android:layout_below="@+id/VolumeBar" android:layout_width="fill_parent" android:id="@+id/StartButton" android:text="@string/StartButton" android:textSize="25sp"></Button> </RelativeLayout> |
Direct link: https://paste.plurk.com/show/ClsoqwDBH8ExgEyhePII