Files
sweet_dreams/SweetDreamsLib/res/xml/settings_lite.xml

31 lines
1.2 KiB
XML

<?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_lite"
android:entries="@array/sounds_lite"
android:key="sounds"
android:title="Sounds"/>
</PreferenceCategory>
<PreferenceCategory
android:title="Timer Options">
<CheckBoxPreference
android:title="Enable"
android:summary="Enable Timer"
android:key="timer_enabled" android:enabled="false" android:defaultValue="true"/>
<com.TwentyCodes.android.SweetDreamsLib.TimePickerPreference
android:enabled="false" 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"/>
</PreferenceCategory>
</PreferenceScreen>