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
<?xml version="1.0" encoding="utf-8"?>
<androidx.preference.PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
    <PreferenceScreen
        android:icon="@drawable/ic_vibration"
        android:key="screen_prefs_find_phone"
        android:persistent="false"
        android:summary="@string/prefs_find_phone_summary"
        android:title="@string/prefs_find_phone">
 
        <ListPreference
            android:defaultValue="@string/p_off"
            android:entries="@array/prefs_find_phone"
            android:entryValues="@array/prefs_find_phone_values"
            android:key="prefs_find_phone"
            android:title="@string/prefs_enable_find_phone" />
 
        <EditTextPreference
            android:defaultValue="60"
            android:inputType="number"
            android:key="prefs_find_phone_duration"
            android:title="@string/prefs_find_phone_duration" />
 
    </PreferenceScreen>
</androidx.preference.PreferenceScreen>