reorg
This commit is contained in:
38
Projects/SweetDreamsLite/res/xml/settings.xml
Normal file
38
Projects/SweetDreamsLite/res/xml/settings.xml
Normal file
@@ -0,0 +1,38 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<PreferenceCategory
|
||||
android:title="White Noise Options">
|
||||
|
||||
<ListPreference android:dialogTitle="Pick A Sound"
|
||||
android:entryValues="@array/sounds"
|
||||
android:entries="@array/sounds"
|
||||
android:key="sounds"
|
||||
android:title="Sounds"/>
|
||||
</PreferenceCategory>
|
||||
|
||||
<PreferenceCategory
|
||||
android:title="Timer Options">
|
||||
|
||||
<CheckBoxPreference
|
||||
android:title="Enable"
|
||||
android:summary="Enable Timer"
|
||||
android:defaultValue="false"
|
||||
android:key="timer_enabled"
|
||||
/>
|
||||
|
||||
<com.TwentyCodes.android.SweetSoundsLite.TimePickerPreference
|
||||
android:title="Timer"
|
||||
android:dependency="timer_enabled"
|
||||
android:key="timer_length"
|
||||
/>
|
||||
|
||||
<CheckBoxPreference
|
||||
android:title="Exit On Finish"
|
||||
android:summary="Closes Application When Timer Finishes"
|
||||
android:defaultValue="false"
|
||||
android:key="timer_exit_on_finish"
|
||||
android:dependency="timer_enabled"
|
||||
/>
|
||||
|
||||
</PreferenceCategory>
|
||||
</PreferenceScreen>
|
||||
Reference in New Issue
Block a user