2021-11-16 14:25:58 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<PreferenceScreen
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
|
|
|
|
<PreferenceCategory
|
|
|
|
android:title="@string/watchface_setting_title_display_refresh_timeout">
|
|
|
|
|
|
|
|
<EditTextPreference
|
|
|
|
android:persistent="false"
|
|
|
|
android:key="pref_hybridhr_watchface_refresh_full"
|
|
|
|
android:title="@string/watchface_setting_display_refresh_full" />
|
|
|
|
<EditTextPreference
|
|
|
|
android:persistent="false"
|
|
|
|
android:key="pref_hybridhr_watchface_refresh_partial"
|
|
|
|
android:title="@string/watchface_setting_display_refresh_partial" />
|
|
|
|
|
|
|
|
</PreferenceCategory>
|
|
|
|
|
|
|
|
<PreferenceCategory
|
|
|
|
android:title="@string/watchface_setting_title_wrist_flick">
|
|
|
|
|
|
|
|
<Preference
|
|
|
|
android:selectable="false"
|
|
|
|
android:enabled="false"
|
|
|
|
android:singleLineTitle="false"
|
|
|
|
android:title="@string/watchface_setting_desc_wrist_flick" />
|
|
|
|
<SwitchPreference
|
|
|
|
android:persistent="false"
|
|
|
|
android:key="pref_hybridhr_watchface_wrist_flick_relative"
|
|
|
|
android:title="@string/watchface_setting_wrist_flick_move_relative"
|
|
|
|
android:singleLineTitle="false" />
|
|
|
|
<EditTextPreference
|
|
|
|
android:persistent="false"
|
|
|
|
android:key="pref_hybridhr_watchface_wrist_flick_hour_hand"
|
|
|
|
android:title="@string/watchface_setting_wrist_flick_hour" />
|
|
|
|
<EditTextPreference
|
|
|
|
android:persistent="false"
|
|
|
|
android:key="pref_hybridhr_watchface_wrist_flick_minute_hand"
|
|
|
|
android:title="@string/watchface_setting_wrist_flick_minute" />
|
|
|
|
<EditTextPreference
|
|
|
|
android:persistent="false"
|
|
|
|
android:key="pref_hybridhr_watchface_wrist_flick_duration"
|
|
|
|
android:title="@string/watchface_setting_wrist_flick_duration" />
|
|
|
|
|
|
|
|
</PreferenceCategory>
|
|
|
|
|
2022-07-25 22:23:22 +02:00
|
|
|
<PreferenceCategory
|
2022-08-01 17:21:55 +02:00
|
|
|
android:title="@string/watchface_setting_title_custom_events">
|
2022-07-25 22:23:22 +02:00
|
|
|
|
|
|
|
<ListPreference
|
|
|
|
android:persistent="false"
|
|
|
|
android:title="@string/watchface_setting_button_toggle_widgets"
|
|
|
|
android:key="pref_hybridhr_watchface_toggle_widgets"
|
2022-08-01 17:21:55 +02:00
|
|
|
android:entries="@array/pref_hybridhr_watchface_buttonevents_items"
|
|
|
|
android:entryValues="@array/pref_hybridhr_watchface_buttonevents_values"
|
2022-07-25 22:23:22 +02:00
|
|
|
android:dialogTitle="@string/watchface_setting_button_toggle_widgets"
|
|
|
|
android:negativeButtonText="@string/Cancel"/>
|
2022-08-01 17:21:55 +02:00
|
|
|
<ListPreference
|
|
|
|
android:persistent="false"
|
|
|
|
android:title="@string/watchface_setting_button_toggle_backlight"
|
|
|
|
android:key="pref_hybridhr_watchface_toggle_backlight"
|
|
|
|
android:entries="@array/pref_hybridhr_watchface_buttonevents_items"
|
|
|
|
android:entryValues="@array/pref_hybridhr_watchface_buttonevents_values"
|
|
|
|
android:dialogTitle="@string/watchface_setting_button_toggle_backlight"
|
|
|
|
android:negativeButtonText="@string/Cancel"/>
|
2022-07-25 22:23:22 +02:00
|
|
|
|
|
|
|
</PreferenceCategory>
|
|
|
|
|
2021-11-16 14:25:58 +01:00
|
|
|
<PreferenceCategory
|
|
|
|
android:title="@string/watchface_setting_title_power_saving">
|
|
|
|
|
|
|
|
<SwitchPreference
|
|
|
|
android:persistent="false"
|
|
|
|
android:key="pref_hybridhr_watchface_power_saving_display"
|
|
|
|
android:title="@string/watchface_setting_power_saving_display"
|
|
|
|
android:singleLineTitle="false" />
|
|
|
|
<SwitchPreference
|
|
|
|
android:persistent="false"
|
|
|
|
android:key="pref_hybridhr_watchface_power_saving_hands"
|
|
|
|
android:title="@string/watchface_setting_power_saving_hands"
|
|
|
|
android:singleLineTitle="false" />
|
2022-03-22 20:52:43 +01:00
|
|
|
<SwitchPreference
|
|
|
|
android:persistent="false"
|
|
|
|
android:key="pref_hybridhr_watchface_light_up_on_notification"
|
|
|
|
android:title="@string/watchface_setting_light_up_on_notification"
|
|
|
|
android:singleLineTitle="false" />
|
2021-11-16 14:25:58 +01:00
|
|
|
|
|
|
|
</PreferenceCategory>
|
|
|
|
</PreferenceScreen>
|