|
|
|
@ -2,40 +2,69 @@ |
|
|
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" |
|
|
|
|
android:key="@string/preferences_file_key"> |
|
|
|
|
|
|
|
|
|
<PreferenceCategory android:title="@string/pref_title_notification_settings"> |
|
|
|
|
<PreferenceCategory android:title="@string/pref_title_appearance_settings"> |
|
|
|
|
|
|
|
|
|
<CheckBoxPreference |
|
|
|
|
android:key="lightTheme" |
|
|
|
|
android:title="@string/pref_title_light_theme" |
|
|
|
|
android:defaultValue="false" /> |
|
|
|
|
|
|
|
|
|
</PreferenceCategory> |
|
|
|
|
|
|
|
|
|
<PreferenceScreen android:title="@string/pref_title_notification_settings"> |
|
|
|
|
|
|
|
|
|
<CheckBoxPreference |
|
|
|
|
android:key="notificationsEnabled" |
|
|
|
|
android:title="@string/pref_title_notifications_enabled" |
|
|
|
|
android:defaultValue="true" /> |
|
|
|
|
|
|
|
|
|
<CheckBoxPreference |
|
|
|
|
<PreferenceCategory |
|
|
|
|
android:dependency="notificationsEnabled" |
|
|
|
|
android:key="notificationAlertSound" |
|
|
|
|
android:title="@string/pref_title_notification_alert_sound" |
|
|
|
|
android:defaultValue="true" /> |
|
|
|
|
android:title="@string/pref_title_notification_filters"> |
|
|
|
|
|
|
|
|
|
<CheckBoxPreference |
|
|
|
|
android:dependency="notificationsEnabled" |
|
|
|
|
android:key="notificationStyleVibrate" |
|
|
|
|
android:title="@string/pref_title_notification_style_vibrate" |
|
|
|
|
android:defaultValue="true" /> |
|
|
|
|
<CheckBoxPreference |
|
|
|
|
android:key="notificationFilterMentions" |
|
|
|
|
android:title="@string/pref_title_notification_filter_mentions" |
|
|
|
|
android:defaultValue="true" /> |
|
|
|
|
|
|
|
|
|
<CheckBoxPreference |
|
|
|
|
<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 |
|
|
|
|
android:dependency="notificationsEnabled" |
|
|
|
|
android:key="notificationStyleLight" |
|
|
|
|
android:title="@string/pref_title_notification_style_light" |
|
|
|
|
android:defaultValue="true" /> |
|
|
|
|
android:title="@string/pref_title_notification_alerts"> |
|
|
|
|
|
|
|
|
|
</PreferenceCategory> |
|
|
|
|
<CheckBoxPreference |
|
|
|
|
android:key="notificationAlertSound" |
|
|
|
|
android:title="@string/pref_title_notification_alert_sound" |
|
|
|
|
android:defaultValue="true" /> |
|
|
|
|
|
|
|
|
|
<PreferenceCategory android:title="@string/pref_title_appearance_settings"> |
|
|
|
|
<CheckBoxPreference |
|
|
|
|
android:key="notificationAlertVibrate" |
|
|
|
|
android:title="@string/pref_title_notification_alert_vibrate" |
|
|
|
|
android:defaultValue="true" /> |
|
|
|
|
|
|
|
|
|
<CheckBoxPreference |
|
|
|
|
android:key="lightTheme" |
|
|
|
|
android:title="@string/pref_title_light_theme" |
|
|
|
|
android:defaultValue="false" /> |
|
|
|
|
<CheckBoxPreference |
|
|
|
|
android:key="notificationAlertLight" |
|
|
|
|
android:title="@string/pref_title_notification_alert_light" |
|
|
|
|
android:defaultValue="true" /> |
|
|
|
|
|
|
|
|
|
</PreferenceCategory> |
|
|
|
|
</PreferenceCategory> |
|
|
|
|
|
|
|
|
|
</PreferenceScreen> |
|
|
|
|
|
|
|
|
|
</PreferenceScreen> |
|
|
|
|