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-03-29 06:39:29 +11:00
|
|
|
<PreferenceCategory android:title="@string/pref_title_appearance_settings">
|
|
|
|
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="lightTheme"
|
|
|
|
android:title="@string/pref_title_light_theme"
|
|
|
|
android:defaultValue="false" />
|
|
|
|
|
2017-04-07 17:40:59 +10:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="fabHide"
|
|
|
|
android:title="Hide FAB while scrolling"
|
|
|
|
android:defaultValue="false" />
|
|
|
|
|
2017-03-29 06:39:29 +11:00
|
|
|
</PreferenceCategory>
|
2017-04-07 12:25:54 +10:00
|
|
|
<PreferenceCategory android:title="@string/pref_title_browser_settings">
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="customTabs"
|
|
|
|
android:title="@string/pre_title_custom_tabs"
|
|
|
|
android:defaultValue="true" />
|
|
|
|
</PreferenceCategory>
|
|
|
|
<PreferenceCategory android:title="@string/pref_title_notification_settings">
|
|
|
|
<PreferenceScreen android:title="@string/pref_title_edit_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" />
|
|
|
|
|
2017-03-29 06:39:29 +11:00
|
|
|
<PreferenceCategory
|
2017-03-16 09:45:59 +11:00
|
|
|
android:dependency="notificationsEnabled"
|
2017-03-29 06:39:29 +11:00
|
|
|
android:title="@string/pref_title_notification_filters">
|
2017-02-05 18:34:55 +11:00
|
|
|
|
2017-03-29 06:39:29 +11:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="notificationFilterMentions"
|
|
|
|
android:title="@string/pref_title_notification_filter_mentions"
|
|
|
|
android:defaultValue="true" />
|
2017-02-05 18:34:55 +11:00
|
|
|
|
2017-03-29 06:39:29 +11:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="notificationFilterFollows"
|
|
|
|
android:title="@string/pref_title_notification_filter_follows"
|
|
|
|
android:defaultValue="true" />
|
|
|
|
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="notificationFilterReblogs"
|
|
|
|
android:title="@string/pref_title_notification_filter_reblogs"
|
|
|
|
android:defaultValue="true" />
|
|
|
|
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="notificationFilterFavourites"
|
|
|
|
android:title="@string/pref_title_notification_filter_favourites"
|
|
|
|
android:defaultValue="true" />
|
|
|
|
|
|
|
|
</PreferenceCategory>
|
|
|
|
|
|
|
|
<PreferenceCategory
|
2017-03-16 09:45:59 +11:00
|
|
|
android:dependency="notificationsEnabled"
|
2017-03-29 06:39:29 +11:00
|
|
|
android:title="@string/pref_title_notification_alerts">
|
2017-03-22 11:40:00 +11:00
|
|
|
|
2017-03-29 06:39:29 +11:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="notificationAlertSound"
|
|
|
|
android:title="@string/pref_title_notification_alert_sound"
|
|
|
|
android:defaultValue="true" />
|
2017-03-22 11:40:00 +11:00
|
|
|
|
2017-03-29 06:39:29 +11:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="notificationAlertVibrate"
|
|
|
|
android:title="@string/pref_title_notification_alert_vibrate"
|
|
|
|
android:defaultValue="true" />
|
2017-03-22 11:40:00 +11:00
|
|
|
|
2017-03-29 06:39:29 +11:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="notificationAlertLight"
|
|
|
|
android:title="@string/pref_title_notification_alert_light"
|
|
|
|
android:defaultValue="true" />
|
2017-03-22 11:40:00 +11:00
|
|
|
|
2017-03-29 06:39:29 +11:00
|
|
|
</PreferenceCategory>
|
|
|
|
|
|
|
|
</PreferenceScreen>
|
2017-04-07 12:25:54 +10:00
|
|
|
</PreferenceCategory>
|
2017-02-05 18:34:55 +11:00
|
|
|
</PreferenceScreen>
|