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
<?xml version="1.0" encoding="utf-8"?>
<androidx.preference.PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
    <PreferenceScreen
        android:icon="@drawable/ic_activity_sleep"
        android:key="pref_screen_sleep_mode"
        android:persistent="false"
        android:title="@string/pref_sleep_mode_title">
 
        <SwitchPreferenceCompat
            android:defaultValue="false"
            android:icon="@drawable/ic_activity_sleep"
            android:key="pref_sleep_mode_sleep_screen"
            android:layout="@layout/preference_checkbox"
            android:summary="@string/pref_sleep_mode_sleep_screen_summary"
            android:title="@string/pref_sleep_mode_sleep_screen_title" />
 
        <SwitchPreferenceCompat
            android:defaultValue="false"
            android:icon="@drawable/ic_auto_awesome"
            android:key="pref_sleep_mode_smart_enable"
            android:layout="@layout/preference_checkbox"
            android:summary="@string/pref_sleep_mode_smart_enable_summary"
            android:title="@string/pref_sleep_mode_smart_enable_title" />
    </PreferenceScreen>
</androidx.preference.PreferenceScreen>