2021-05-07 11:24:10 +02:00
|
|
|
<?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">
|
|
|
|
|
2021-05-29 16:42:32 +02:00
|
|
|
<Preference
|
|
|
|
android:title="@string/qhybrid_title_watchface"
|
2021-07-06 09:24:12 +02:00
|
|
|
android:icon="@drawable/ic_watch"
|
2021-05-29 16:42:32 +02:00
|
|
|
android:summary="@string/qhybrid_watchface_configuration_old_firmware">
|
|
|
|
<intent
|
|
|
|
android:targetPackage="nodomain.freeyourgadget.gadgetbridge"
|
|
|
|
android:targetClass="nodomain.freeyourgadget.gadgetbridge.devices.qhybrid.HRConfigActivity" />
|
|
|
|
</Preference>
|
|
|
|
|
2021-05-07 11:24:10 +02:00
|
|
|
<SwitchPreference
|
|
|
|
android:defaultValue="false"
|
2021-07-06 09:24:12 +02:00
|
|
|
android:icon="@drawable/ic_filter_b_and_w"
|
2021-05-07 11:24:10 +02:00
|
|
|
android:key="force_white_color_scheme"
|
|
|
|
android:summary="@string/pref_summary_force_white_color_scheme"
|
|
|
|
android:title="@string/pref_title_force_white_color_scheme" />
|
|
|
|
<SwitchPreference
|
|
|
|
android:defaultValue="false"
|
2021-07-06 09:24:12 +02:00
|
|
|
android:icon="@drawable/ic_circle"
|
2021-05-07 11:24:10 +02:00
|
|
|
android:key="widget_draw_circles"
|
|
|
|
android:title="@string/pref_qhybrid_title_widget_draw_circles" />
|
|
|
|
|
|
|
|
</androidx.preference.PreferenceScreen>
|