wangzhibo
4 天以前 ae6f40460dcd56af6c5f60ba52c883854c3bac55
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto">
 
    <PreferenceScreen
        android:icon="@drawable/ic_vibration"
        android:key="vibration_patterns_key"
        android:persistent="false"
        android:summary="@string/pref_screen_vibration_patterns_summary"
        android:title="@string/pref_screen_vibration_patterns_title">
 
        <ListPreference
            android:defaultValue="2"
            android:entries="@array/zetime_signaling_types"
            android:entryValues="@array/zetime_signaling_types_values"
            android:icon="@drawable/ic_message_outline"
            android:key="zetime_vibration_profile_sms"
            android:title="@string/pref_screen_notification_profile_sms"
            app:iconSpaceReserved="false"
            app:useSimpleSummaryProvider="true" />
 
        <ListPreference
            android:defaultValue="13"
            android:entries="@array/zetime_signaling_types"
            android:entryValues="@array/zetime_signaling_types_values"
            android:icon="@drawable/ic_phone"
            android:key="zetime_vibration_profile_incoming_call"
            android:title="@string/pref_screen_notification_profile_incoming_call"
            app:iconSpaceReserved="false"
            app:useSimpleSummaryProvider="true" />
 
        <ListPreference
            android:defaultValue="12"
            android:entries="@array/zetime_signaling_types"
            android:entryValues="@array/zetime_signaling_types_values"
            android:icon="@drawable/ic_phone_missed_outline"
            android:key="zetime_vibration_profile_missed_call"
            android:title="@string/pref_screen_notification_profile_missed_call"
            app:iconSpaceReserved="false"
            app:useSimpleSummaryProvider="true" />
 
        <ListPreference
            android:defaultValue="12"
            android:entries="@array/zetime_signaling_types"
            android:entryValues="@array/zetime_signaling_types_values"
            android:icon="@drawable/ic_email"
            android:key="zetime_vibration_profile_generic_email"
            android:title="@string/pref_screen_notification_profile_email"
            app:iconSpaceReserved="false"
            app:useSimpleSummaryProvider="true" />
 
        <ListPreference
            android:icon="@drawable/ic_person"
            android:defaultValue="12"
            android:entries="@array/zetime_signaling_types"
            android:entryValues="@array/zetime_signaling_types_values"
            android:key="zetime_vibration_profile_generic_social"
            android:title="@string/pref_screen_notification_profile_generic_social"
            app:iconSpaceReserved="false"
            app:useSimpleSummaryProvider="true" />
 
        <ListPreference
            android:icon="@drawable/ic_access_alarms"
            android:defaultValue="11"
            android:entries="@array/zetime_signaling_types"
            android:entryValues="@array/zetime_signaling_types_values"
            android:key="zetime_alarm_signaling"
            android:title="@string/pref_screen_notification_profile_alarm_clock"
            app:iconSpaceReserved="false"
            app:useSimpleSummaryProvider="true" />
 
        <ListPreference
            android:icon="@drawable/ic_calendar_to"
            android:defaultValue="12"
            android:entries="@array/zetime_signaling_types"
            android:entryValues="@array/zetime_signaling_types_values"
            android:key="zetime_vibration_profile_calendar"
            android:title="@string/pref_screen_notification_profile_calendar"
            app:iconSpaceReserved="false"
            app:useSimpleSummaryProvider="true" />
 
        <ListPreference
            android:icon="@drawable/ic_chair"
            android:defaultValue="12"
            android:entries="@array/zetime_signaling_types"
            android:entryValues="@array/zetime_signaling_types_values"
            android:key="zetime_vibration_profile_inactivity"
            android:title="@string/pref_screen_notification_profile_inactivity"
            app:iconSpaceReserved="false"
            app:useSimpleSummaryProvider="true" />
 
        <ListPreference
            android:icon="@drawable/ic_battery"
            android:defaultValue="4"
            android:entries="@array/zetime_signaling_types"
            android:entryValues="@array/zetime_signaling_types_values"
            android:key="zetime_vibration_profile_lowpower"
            android:title="@string/pref_screen_notification_profile_low_power"
            app:iconSpaceReserved="false"
            app:useSimpleSummaryProvider="true" />
 
        <ListPreference
            android:icon="@drawable/ic_signal_cellular_connected_no_internet_4_bar"
            android:defaultValue="13"
            android:entries="@array/zetime_signaling_types"
            android:entryValues="@array/zetime_signaling_types_values"
            android:key="zetime_vibration_profile_antiloss"
            android:title="@string/pref_screen_notification_profile_anti_loss"
            app:iconSpaceReserved="false"
            app:useSimpleSummaryProvider="true" />
    </PreferenceScreen>
</PreferenceScreen>