wangzhibo
4 天以前 ae6f40460dcd56af6c5f60ba52c883854c3bac55
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?xml version="1.0" encoding="utf-8"?>
<androidx.preference.PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
    <ListPreference
        android:defaultValue="0"
        android:entries="@array/miscale_weight_unit_names"
        android:entryValues="@array/miscale_weight_unit_values"
        android:icon="@drawable/ic_calculate"
        android:key="pref_miscale_weight_unit"
        android:title="@string/miscale_weight_unit_title"
        android:summary="@string/miscale_weight_unit_summary" />
    <SwitchPreferenceCompat
        android:defaultValue="false"
        android:icon="@drawable/ic_pressure"
        android:key="pref_miscale_small_objects"
        android:layout="@layout/preference_checkbox"
        android:title="@string/miscale_small_objects_title"
        android:summary="@string/miscale_small_objects_summary" />
</androidx.preference.PreferenceScreen>