2017-02-05 18:34:55 +11:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:key="@string/preferences_file_key">
|
2017-03-22 11:40:00 +11:00
|
|
|
|
2017-02-17 05:52:55 +11:00
|
|
|
<PreferenceCategory android:title="@string/pref_title_notification_settings">
|
2017-03-22 11:40:00 +11:00
|
|
|
|
2017-02-05 18:34:55 +11:00
|
|
|
<CheckBoxPreference
|
2017-03-16 09:45:59 +11:00
|
|
|
android:key="notificationsEnabled"
|
|
|
|
android:title="@string/pref_title_notifications_enabled"
|
|
|
|
android:defaultValue="true" />
|
|
|
|
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:dependency="notificationsEnabled"
|
2017-02-05 18:34:55 +11:00
|
|
|
android:key="notificationAlertSound"
|
|
|
|
android:title="@string/pref_title_notification_alert_sound"
|
|
|
|
android:defaultValue="true" />
|
|
|
|
|
|
|
|
<CheckBoxPreference
|
2017-03-16 09:45:59 +11:00
|
|
|
android:dependency="notificationsEnabled"
|
2017-02-05 18:34:55 +11:00
|
|
|
android:key="notificationStyleVibrate"
|
|
|
|
android:title="@string/pref_title_notification_style_vibrate"
|
2017-03-12 18:31:20 +11:00
|
|
|
android:defaultValue="true" />
|
2017-02-05 18:34:55 +11:00
|
|
|
|
|
|
|
<CheckBoxPreference
|
2017-03-16 09:45:59 +11:00
|
|
|
android:dependency="notificationsEnabled"
|
2017-02-05 18:34:55 +11:00
|
|
|
android:key="notificationStyleLight"
|
|
|
|
android:title="@string/pref_title_notification_style_light"
|
2017-03-12 18:31:20 +11:00
|
|
|
android:defaultValue="true" />
|
2017-03-22 11:40:00 +11:00
|
|
|
|
2017-02-05 18:34:55 +11:00
|
|
|
</PreferenceCategory>
|
2017-03-22 11:40:00 +11:00
|
|
|
|
|
|
|
<PreferenceCategory android:title="@string/pref_title_appearance_settings">
|
|
|
|
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="lightTheme"
|
|
|
|
android:title="@string/pref_title_light_theme"
|
|
|
|
android:defaultValue="false" />
|
|
|
|
|
|
|
|
</PreferenceCategory>
|
|
|
|
|
2017-02-05 18:34:55 +11:00
|
|
|
</PreferenceScreen>
|