aboutsummaryrefslogtreecommitdiff
path: root/WordPress/src/main/res/xml/notifications_settings.xml
blob: 3b0ff89e9e839dc97d6a8fa3a6a8262e8c03982e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
                  android:key="wp_pref_notifications_root">
    <PreferenceCategory
        android:key="@string/pref_notification_blogs"
        android:title="@string/your_sites">
    </PreferenceCategory>
    <PreferenceCategory
        android:key="@string/pref_notification_other_category"
        android:title="@string/notifications_other">
        <PreferenceScreen
            android:key="@string/pref_notification_other_blogs"
            android:title="@string/notifications_comments_other_blogs"/>
    </PreferenceCategory>
    <PreferenceCategory
        android:key="@string/pref_notification_sights_sounds"
        android:title="@string/notifications_sights_and_sounds">
        <RingtonePreference
            android:key="wp_pref_custom_notification_sound"
            android:ringtoneType="notification"
            android:showDefault="true"
            android:title="@string/notification_sound"/>
        <SwitchPreference
            android:defaultValue="false"
            android:key="wp_pref_notification_vibrate"
            android:title="@string/notification_vibrate"/>
        <SwitchPreference
            android:defaultValue="false"
            android:key="wp_pref_notification_light"
            android:title="@string/notification_blink"/>
    </PreferenceCategory>
</PreferenceScreen>