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
<?xml version="1.0" encoding="utf-8"?>
<androidx.preference.PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto">
 
    <Preference
        android:title="@string/qhybrid_title_watchface"
        android:icon="@drawable/ic_watch"
        android:summary="@string/qhybrid_watchface_configuration_old_firmware">
        <intent
            android:targetPackage="@string/applicationId"
            android:targetClass="nodomain.freeyourgadget.gadgetbridge.devices.qhybrid.HRConfigActivity" />
    </Preference>
 
    <SwitchPreferenceCompat
        android:defaultValue="false"
        android:icon="@drawable/ic_filter_b_and_w"
        android:key="force_white_color_scheme"
        android:layout="@layout/preference_checkbox"
        android:summary="@string/pref_summary_force_white_color_scheme"
        android:title="@string/pref_title_force_white_color_scheme" />
    <SwitchPreferenceCompat
        android:defaultValue="false"
        android:icon="@drawable/ic_circle"
        android:key="widget_draw_circles"
        android:layout="@layout/preference_checkbox"
        android:title="@string/pref_qhybrid_title_widget_draw_circles" />
 
</androidx.preference.PreferenceScreen>