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
<?xml version="1.0" encoding="utf-8"?>
<androidx.preference.PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
    <PreferenceScreen
        android:icon="@drawable/ic_action_find_lost_device"
        android:key="screen_hourly_chime"
        android:persistent="false"
        android:summary="@string/prefs_hourly_chime_summary"
        android:title="@string/prefs_hourly_chime">
 
        <SwitchPreferenceCompat
            android:defaultValue="false"
            android:key="hourly_chime_enable"
            android:layout="@layout/preference_checkbox"
            android:title="@string/prefs_hourly_chime"
            android:summary="@string/prefs_hourly_chime_summary" />
 
        <nodomain.freeyourgadget.gadgetbridge.util.XTimePreference
            android:defaultValue="09:00"
            android:dependency="hourly_chime_enable"
            android:key="hourly_chime_start"
            android:title="@string/mi2_prefs_do_not_disturb_start" />
 
        <nodomain.freeyourgadget.gadgetbridge.util.XTimePreference
            android:defaultValue="22:00"
            android:dependency="hourly_chime_enable"
            android:key="hourly_chime_end"
            android:title="@string/mi2_prefs_do_not_disturb_end" />
 
    </PreferenceScreen>
</androidx.preference.PreferenceScreen>