mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2025-02-01 11:42:18 +01:00
84 lines
3.8 KiB
XML
84 lines
3.8 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<PreferenceScreen
|
||
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
||
|
|
||
|
<PreferenceCategory
|
||
|
android:key="widget_pref_category_generic"
|
||
|
android:title="@string/watchface_dialog_widget_cat_generic">
|
||
|
<ListPreference
|
||
|
android:persistent="false"
|
||
|
android:title="@string/watchface_dialog_widget_type"
|
||
|
android:key="pref_hybridhr_widget_type"
|
||
|
android:dialogTitle="@string/watchface_dialog_widget_type"
|
||
|
android:negativeButtonText="@string/Cancel"/>
|
||
|
<ListPreference
|
||
|
android:persistent="false"
|
||
|
android:title="@string/watchface_dialog_widget_color"
|
||
|
android:key="pref_hybridhr_widget_color"
|
||
|
android:dialogTitle="@string/watchface_dialog_widget_color"
|
||
|
android:negativeButtonText="@string/Cancel"/>
|
||
|
</PreferenceCategory>
|
||
|
|
||
|
<PreferenceCategory
|
||
|
android:key="widget_pref_category_position"
|
||
|
android:title="@string/watchface_dialog_widget_cat_position">
|
||
|
<EditTextPreference
|
||
|
android:persistent="false"
|
||
|
android:key="pref_hybridhr_widget_pos_x"
|
||
|
android:title="@string/watchface_dialog_widget_x_coordinate"
|
||
|
android:inputType="numberDecimal" />
|
||
|
<EditTextPreference
|
||
|
android:persistent="false"
|
||
|
android:key="pref_hybridhr_widget_pos_y"
|
||
|
android:title="@string/watchface_dialog_widget_y_coordinate"
|
||
|
android:inputType="numberDecimal" />
|
||
|
<ListPreference
|
||
|
android:persistent="false"
|
||
|
android:title="@string/watchface_dialog_widget_presets"
|
||
|
android:key="pref_hybridhr_widget_pos_preset"
|
||
|
android:dialogTitle="@string/watchface_dialog_widget_presets"
|
||
|
android:negativeButtonText="@string/Cancel"/>
|
||
|
</PreferenceCategory>
|
||
|
|
||
|
<PreferenceCategory
|
||
|
android:key="widget_pref_category_2nd_tz_widget"
|
||
|
android:title="@string/watchface_dialog_widget_cat_2nd_tz_widget">
|
||
|
<ListPreference
|
||
|
android:persistent="false"
|
||
|
android:title="@string/watchface_dialog_widget_timezone"
|
||
|
android:key="pref_hybridhr_widget_timezone"
|
||
|
android:dialogTitle="@string/watchface_dialog_widget_timezone"
|
||
|
android:negativeButtonText="@string/Cancel"/>
|
||
|
<EditTextPreference
|
||
|
android:persistent="false"
|
||
|
android:key="pref_hybridhr_widget_timezone_timeout"
|
||
|
android:title="@string/watchface_dialog_widget_timezone_duration"
|
||
|
android:inputType="numberDecimal" />
|
||
|
</PreferenceCategory>
|
||
|
|
||
|
<PreferenceCategory
|
||
|
android:key="widget_pref_category_custom_widget"
|
||
|
android:title="@string/watchface_dialog_widget_cat_custom_widget">
|
||
|
<EditTextPreference
|
||
|
android:persistent="false"
|
||
|
android:key="pref_hybridhr_widget_width"
|
||
|
android:title="@string/watchface_dialog_widget_width"
|
||
|
android:inputType="numberDecimal" />
|
||
|
<EditTextPreference
|
||
|
android:persistent="false"
|
||
|
android:key="pref_hybridhr_widget_custom_timeout"
|
||
|
android:title="@string/watchface_dialog_widget_update_timeout"
|
||
|
android:inputType="numberDecimal" />
|
||
|
<SwitchPreference
|
||
|
android:persistent="false"
|
||
|
android:key="pref_hybridhr_widget_custom_hide_text"
|
||
|
android:title="@string/watchface_dialog_widget_timeout_hide_text"
|
||
|
android:singleLineTitle="false" />
|
||
|
<SwitchPreference
|
||
|
android:persistent="false"
|
||
|
android:key="pref_hybridhr_widget_custom_show_circle"
|
||
|
android:title="@string/watchface_dialog_widget_timeout_show_circle"
|
||
|
android:singleLineTitle="false" />
|
||
|
</PreferenceCategory>
|
||
|
|
||
|
</PreferenceScreen>
|