diff options
author | Martin Fietz <Martin.Fietz@gmail.com> | 2015-08-09 11:40:46 +0200 |
---|---|---|
committer | Martin Fietz <Martin.Fietz@gmail.com> | 2015-09-05 00:44:47 +0200 |
commit | 946d5ef50c109549f2d15160c0345b0b8b2f4d84 (patch) | |
tree | 3e3397c8640b03affaaa013afa0f39ecba547727 /app/src/main/res/layout-v14 | |
parent | c7d8a1bae890d6ea069d09cfa642dd76f060eec8 (diff) | |
download | AntennaPod-946d5ef50c109549f2d15160c0345b0b8b2f4d84.zip |
Add options to sleep timer dialog
Diffstat (limited to 'app/src/main/res/layout-v14')
-rw-r--r-- | app/src/main/res/layout-v14/time_dialog.xml | 35 |
1 files changed, 34 insertions, 1 deletions
diff --git a/app/src/main/res/layout-v14/time_dialog.xml b/app/src/main/res/layout-v14/time_dialog.xml index 7fd4309d5..d7f6003f5 100644 --- a/app/src/main/res/layout-v14/time_dialog.xml +++ b/app/src/main/res/layout-v14/time_dialog.xml @@ -2,7 +2,7 @@ <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" - android:orientation="vertical" > + android:orientation="vertical"> <LinearLayout android:layout_width="match_parent" @@ -31,6 +31,39 @@ android:layout_marginTop="8dp" /> </LinearLayout> + <LinearLayout + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:gravity="center"> + + <LinearLayout + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:orientation="vertical"> + + <TextView + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_marginTop="8dp" + android:textSize="16sp" + android:text="@string/timer_about_to_expire_label"/> + + <CheckBox android:id="@+id/cbShakeToReset" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="@string/shake_to_reset_label" + android:checked="true" /> + + <CheckBox android:id="@+id/cbVibrate" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="@string/timer_vibration_label" + android:checked="true" /> + + </LinearLayout> + + </LinearLayout> + <RelativeLayout android:id="@+id/footer" android:layout_width="fill_parent" |