2019-03-05 22:28:51 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<PreferenceCategory
|
|
|
|
android:key="pref_category_zetime_general"
|
|
|
|
android:title="@string/pref_header_general">
|
|
|
|
|
|
|
|
<EditTextPreference
|
|
|
|
android:inputType="number"
|
|
|
|
android:maxLength="5"
|
|
|
|
android:defaultValue="30"
|
|
|
|
android:key="zetime_screentime"
|
|
|
|
android:title="@string/zetime_title_screentime"/>
|
|
|
|
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="zetime_activity_tracking"
|
|
|
|
android:title="@string/zetime_activity_tracking"
|
|
|
|
android:summary="@string/zetime_activity_tracking_summary" />
|
|
|
|
|
2019-05-24 22:15:39 +02:00
|
|
|
<EditTextPreference
|
|
|
|
android:defaultValue="10000"
|
|
|
|
android:inputType="number"
|
2022-03-06 17:46:12 +01:00
|
|
|
android:key="fitness_goal"
|
2019-05-24 22:15:39 +02:00
|
|
|
android:maxLength="5"
|
|
|
|
android:title="@string/miband_prefs_fitness_goal" />
|
|
|
|
|
|
|
|
<EditTextPreference
|
|
|
|
android:inputType="number"
|
|
|
|
android:key="activity_user_sleep_duration"
|
|
|
|
android:maxLength="2"
|
|
|
|
android:title="@string/activity_prefs_sleep_duration" />
|
|
|
|
|
|
|
|
<EditTextPreference
|
|
|
|
android:defaultValue="2000"
|
|
|
|
android:inputType="number"
|
|
|
|
android:key="activity_user_calories_burnt"
|
|
|
|
android:maxLength="4"
|
|
|
|
android:title="@string/activity_prefs_calories_burnt" />
|
|
|
|
|
|
|
|
<EditTextPreference
|
|
|
|
android:defaultValue="5"
|
|
|
|
android:inputType="number"
|
|
|
|
android:key="activity_user_distance_meters"
|
|
|
|
android:maxLength="5"
|
|
|
|
android:title="@string/activity_prefs_distance_meters" />
|
|
|
|
|
|
|
|
<EditTextPreference
|
|
|
|
android:defaultValue="60"
|
|
|
|
android:inputType="number"
|
|
|
|
android:key="activity_user_activetime_minutes"
|
|
|
|
android:maxLength="3"
|
|
|
|
android:title="@string/activity_prefs_activetime_minutes" />
|
|
|
|
|
2019-03-05 22:28:51 +01:00
|
|
|
<PreferenceScreen
|
2022-03-07 14:33:10 +01:00
|
|
|
android:key="inactivity_warnings_key"
|
2019-03-05 22:28:51 +01:00
|
|
|
android:summary="@string/mi2_prefs_inactivity_warnings_summary"
|
|
|
|
android:title="@string/mi2_prefs_inactivity_warnings"
|
|
|
|
android:persistent="false">
|
|
|
|
|
|
|
|
<!-- workaround for missing toolbar -->
|
|
|
|
<PreferenceCategory
|
|
|
|
android:title="@string/mi2_prefs_inactivity_warnings"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="false"
|
2022-03-07 14:33:10 +01:00
|
|
|
android:key="inactivity_warnings"
|
2019-03-05 22:28:51 +01:00
|
|
|
android:summary="@string/mi2_prefs_inactivity_warnings_summary"
|
|
|
|
android:title="@string/mi2_prefs_inactivity_warnings" />
|
|
|
|
|
|
|
|
<EditTextPreference
|
|
|
|
android:defaultValue="60"
|
2022-03-07 14:33:10 +01:00
|
|
|
android:dependency="inactivity_warnings"
|
2019-03-05 22:28:51 +01:00
|
|
|
android:inputType="numberSigned"
|
2022-03-07 14:33:10 +01:00
|
|
|
android:key="inactivity_warnings_threshold"
|
2019-03-05 22:28:51 +01:00
|
|
|
android:maxLength="3"
|
|
|
|
android:title="@string/mi2_prefs_inactivity_warnings_threshold" />
|
|
|
|
|
|
|
|
<nodomain.freeyourgadget.gadgetbridge.util.TimePreference
|
|
|
|
android:defaultValue="06:00"
|
2022-03-07 14:33:10 +01:00
|
|
|
android:dependency="inactivity_warnings"
|
|
|
|
android:key="inactivity_warnings_start"
|
2019-03-05 22:28:51 +01:00
|
|
|
android:title="@string/mi2_prefs_do_not_disturb_start" />
|
|
|
|
|
|
|
|
<nodomain.freeyourgadget.gadgetbridge.util.TimePreference
|
|
|
|
android:defaultValue="22:00"
|
2022-03-07 14:33:10 +01:00
|
|
|
android:dependency="inactivity_warnings"
|
|
|
|
android:key="inactivity_warnings_end"
|
2019-03-05 22:28:51 +01:00
|
|
|
android:title="@string/mi2_prefs_do_not_disturb_end" />
|
|
|
|
|
|
|
|
<!-- workaround for missing toolbar -->
|
|
|
|
<PreferenceCategory android:title="@string/zetime_prefs_inactivity_repetitions"
|
2022-03-07 14:33:10 +01:00
|
|
|
android:dependency="inactivity_warnings">
|
2019-03-05 22:28:51 +01:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="false"
|
2022-03-07 14:33:10 +01:00
|
|
|
android:key="inactivity_warnings_mo"
|
2019-03-05 22:28:51 +01:00
|
|
|
android:title="@string/zetime_prefs_inactivity_mo" />
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="false"
|
2022-03-07 14:33:10 +01:00
|
|
|
android:key="inactivity_warnings_tu"
|
2019-03-05 22:28:51 +01:00
|
|
|
android:title="@string/zetime_prefs_inactivity_tu" />
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="false"
|
2022-03-07 14:33:10 +01:00
|
|
|
android:key="inactivity_warnings_we"
|
2019-03-05 22:28:51 +01:00
|
|
|
android:title="@string/zetime_prefs_inactivity_we" />
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="false"
|
2022-03-07 14:33:10 +01:00
|
|
|
android:key="inactivity_warnings_th"
|
2019-03-05 22:28:51 +01:00
|
|
|
android:title="@string/zetime_prefs_inactivity_th" />
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="false"
|
2022-03-07 14:33:10 +01:00
|
|
|
android:key="inactivity_warnings_fr"
|
2019-03-05 22:28:51 +01:00
|
|
|
android:title="@string/zetime_prefs_inactivity_fr" />
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="false"
|
2022-03-07 14:33:10 +01:00
|
|
|
android:key="inactivity_warnings_sa"
|
2019-03-05 22:28:51 +01:00
|
|
|
android:title="@string/zetime_prefs_inactivity_sa" />
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="false"
|
2022-03-07 14:33:10 +01:00
|
|
|
android:key="inactivity_warnings_su"
|
2019-03-05 22:28:51 +01:00
|
|
|
android:title="@string/zetime_prefs_inactivity_su" />
|
|
|
|
</PreferenceCategory>
|
|
|
|
</PreferenceScreen>
|
|
|
|
|
|
|
|
<ListPreference
|
|
|
|
android:defaultValue="0"
|
|
|
|
android:entries="@array/zetime_calories_type"
|
|
|
|
android:entryValues="@array/zetime_calories_type_values"
|
|
|
|
android:key="zetime_calories_type"
|
|
|
|
android:title="@string/zetime_calories_type"
|
|
|
|
android:summary="%s" />
|
|
|
|
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="zetime_handmove_display"
|
|
|
|
android:title="@string/zetime_handmove_display"
|
|
|
|
android:summary="@string/zetime_handmove_display_summary" />
|
|
|
|
|
|
|
|
<ListPreference
|
|
|
|
android:defaultValue="0"
|
|
|
|
android:entries="@array/zetime_analog_mode"
|
|
|
|
android:entryValues="@array/zetime_analog_mode_values"
|
|
|
|
android:key="zetime_analog_mode"
|
|
|
|
android:title="@string/zetime_analog_mode"
|
|
|
|
android:summary="%s" />
|
|
|
|
|
|
|
|
<ListPreference
|
|
|
|
android:defaultValue="2"
|
|
|
|
android:entries="@array/zetime_date_format"
|
|
|
|
android:entryValues="@array/zetime_date_format_values"
|
|
|
|
android:key="zetime_date_format"
|
|
|
|
android:title="@string/zetime_date_format"
|
|
|
|
android:summary="%s" />
|
|
|
|
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="zetime_dont_del_actdata"
|
|
|
|
android:title="@string/pref_title_keep_data_on_device"
|
|
|
|
android:summary="@string/pref_summary_keep_data_on_device"
|
|
|
|
android:defaultValue="true" />
|
|
|
|
|
|
|
|
<PreferenceScreen
|
|
|
|
android:key="zetime_do_not_disturb_key"
|
|
|
|
android:title="@string/mi2_prefs_do_not_disturb"
|
|
|
|
android:persistent="false"
|
|
|
|
android:summary="@string/mi2_prefs_do_not_disturb_summary">
|
|
|
|
|
|
|
|
<!-- workaround for missing toolbar -->
|
|
|
|
<PreferenceCategory
|
|
|
|
android:title="@string/mi2_prefs_do_not_disturb"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<ListPreference
|
|
|
|
android:defaultValue="@string/p_off"
|
|
|
|
android:entries="@array/zetime_do_not_disturb"
|
|
|
|
android:entryValues="@array/zetime_do_not_disturb_values"
|
2022-03-06 23:48:47 +01:00
|
|
|
android:key="do_not_disturb"
|
2019-03-05 22:28:51 +01:00
|
|
|
android:title="@string/mi2_prefs_do_not_disturb"
|
|
|
|
android:summary="%s" />
|
|
|
|
|
|
|
|
<nodomain.freeyourgadget.gadgetbridge.util.TimePreference
|
|
|
|
android:defaultValue="22:00"
|
2022-03-06 23:48:47 +01:00
|
|
|
android:key="do_not_disturb_start"
|
2019-03-05 22:28:51 +01:00
|
|
|
android:title="@string/mi2_prefs_do_not_disturb_start" />
|
|
|
|
|
|
|
|
<nodomain.freeyourgadget.gadgetbridge.util.TimePreference
|
|
|
|
android:defaultValue="07:00"
|
2022-03-06 23:48:47 +01:00
|
|
|
android:key="do_not_disturb_end"
|
2019-03-05 22:28:51 +01:00
|
|
|
android:title="@string/mi2_prefs_do_not_disturb_end" />
|
|
|
|
|
|
|
|
</PreferenceScreen>
|
|
|
|
</PreferenceCategory>
|
|
|
|
<PreferenceCategory
|
|
|
|
android:key="pref_category_zetime_heartrate"
|
|
|
|
android:title="@string/zetime_title_heartrate">
|
|
|
|
<ListPreference
|
|
|
|
android:defaultValue="0"
|
|
|
|
android:entries="@array/prefs_zetime_heartrate_measurement_interval"
|
|
|
|
android:entryValues="@array/prefs_zetime_heartrate_measurement_interval_values"
|
|
|
|
android:key="heartrate_measurement_interval"
|
|
|
|
android:summary="%s"
|
|
|
|
android:title="@string/prefs_title_heartrate_measurement_interval" />
|
|
|
|
<PreferenceScreen
|
|
|
|
android:key="zetime_heartrate_alarm_key"
|
|
|
|
android:summary="@string/zetime_title_heart_rate_alarm_summary"
|
|
|
|
android:title="@string/zetime_title_heart_rate_alarm"
|
|
|
|
android:persistent="false">
|
|
|
|
|
|
|
|
<!-- workaround for missing toolbar -->
|
|
|
|
<PreferenceCategory
|
|
|
|
android:title="@string/zetime_title_heart_rate_alarm"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="zetime_heartrate_alarm_enable"
|
|
|
|
android:summary="@string/zetime_title_heart_rate_alarm_summary"
|
|
|
|
android:title="@string/zetime_heart_rate_alarm_enable" />
|
|
|
|
|
|
|
|
<EditTextPreference
|
|
|
|
android:inputType="number"
|
|
|
|
android:dependency="zetime_heartrate_alarm_enable"
|
|
|
|
android:key="alarm_max_heart_rate"
|
|
|
|
android:maxLength="3"
|
|
|
|
android:defaultValue="180"
|
|
|
|
android:title="@string/activity_prefs_alarm_max_heart_rate" />
|
|
|
|
|
|
|
|
<EditTextPreference
|
|
|
|
android:inputType="number"
|
|
|
|
android:dependency="zetime_heartrate_alarm_enable"
|
|
|
|
android:key="alarm_min_heart_rate"
|
|
|
|
android:maxLength="3"
|
|
|
|
android:defaultValue="60"
|
|
|
|
android:title="@string/activity_prefs_alarm_min_heart_rate" />
|
|
|
|
</PreferenceScreen>
|
|
|
|
</PreferenceCategory>
|
|
|
|
|
|
|
|
<PreferenceCategory
|
|
|
|
android:key="pref_category_miband_notification"
|
|
|
|
android:title="@string/pref_header_vibration_settings">
|
|
|
|
|
|
|
|
<PreferenceScreen
|
|
|
|
android:key="vibration_profile_key"
|
|
|
|
android:title="@string/pref_screen_notification_profile_sms"
|
|
|
|
android:persistent="false">
|
|
|
|
|
|
|
|
<!-- workaround for missing toolbar -->
|
|
|
|
<PreferenceCategory
|
|
|
|
android:title="@string/pref_screen_notification_profile_sms"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<ListPreference
|
|
|
|
android:defaultValue="2"
|
|
|
|
android:entries="@array/zetime_signaling_types"
|
|
|
|
android:entryValues="@array/zetime_signaling_types_values"
|
|
|
|
android:key="zetime_vibration_profile_sms"
|
|
|
|
android:title="@string/miband_prefs_vibration"
|
|
|
|
android:summary="%s" />
|
|
|
|
|
|
|
|
<Preference
|
|
|
|
android:key="zetime_try_generic_sms"
|
|
|
|
android:persistent="false"
|
|
|
|
android:title="@string/vibration_try"/>
|
|
|
|
</PreferenceScreen>
|
|
|
|
|
|
|
|
<PreferenceScreen
|
|
|
|
android:key="vibration_profile_key"
|
|
|
|
android:title="@string/pref_screen_notification_profile_incoming_call"
|
|
|
|
android:persistent="false">
|
|
|
|
|
|
|
|
<!-- workaround for missing toolbar -->
|
|
|
|
<PreferenceCategory
|
|
|
|
android:title="@string/pref_screen_notification_profile_incoming_call"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<ListPreference
|
|
|
|
android:defaultValue="13"
|
|
|
|
android:entries="@array/zetime_signaling_types"
|
|
|
|
android:entryValues="@array/zetime_signaling_types_values"
|
|
|
|
android:key="zetime_vibration_profile_incoming_call"
|
|
|
|
android:title="@string/miband_prefs_vibration"
|
|
|
|
android:summary="%s" />
|
|
|
|
</PreferenceScreen>
|
|
|
|
|
|
|
|
<PreferenceScreen
|
|
|
|
android:key="vibration_profile_key"
|
|
|
|
android:title="@string/pref_screen_notification_profile_missed_call"
|
|
|
|
android:persistent="false">
|
|
|
|
|
|
|
|
<!-- workaround for missing toolbar -->
|
|
|
|
<PreferenceCategory
|
|
|
|
android:title="@string/pref_screen_notification_profile_missed_call"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<ListPreference
|
|
|
|
android:defaultValue="12"
|
|
|
|
android:entries="@array/zetime_signaling_types"
|
|
|
|
android:entryValues="@array/zetime_signaling_types_values"
|
|
|
|
android:key="zetime_vibration_profile_missed_call"
|
|
|
|
android:title="@string/miband_prefs_vibration"
|
|
|
|
android:summary="%s" />
|
|
|
|
</PreferenceScreen>
|
|
|
|
|
|
|
|
<PreferenceScreen
|
|
|
|
android:key="vibration_profile_key"
|
|
|
|
android:title="@string/pref_screen_notification_profile_email"
|
|
|
|
android:persistent="false">
|
|
|
|
|
|
|
|
<!-- workaround for missing toolbar -->
|
|
|
|
<PreferenceCategory
|
|
|
|
android:title="@string/pref_screen_notification_profile_email"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<ListPreference
|
|
|
|
android:defaultValue="12"
|
|
|
|
android:entries="@array/zetime_signaling_types"
|
|
|
|
android:entryValues="@array/zetime_signaling_types_values"
|
|
|
|
android:key="zetime_vibration_profile_generic_email"
|
|
|
|
android:title="@string/miband_prefs_vibration"
|
|
|
|
android:summary="%s" />
|
|
|
|
|
|
|
|
<Preference
|
|
|
|
android:key="zetime_try_generic_email"
|
|
|
|
android:persistent="false"
|
|
|
|
android:title="@string/vibration_try"/>
|
|
|
|
</PreferenceScreen>
|
|
|
|
|
|
|
|
<PreferenceScreen
|
|
|
|
android:key="vibration_profile_key"
|
|
|
|
android:title="@string/pref_screen_notification_profile_generic_social"
|
|
|
|
android:persistent="false">
|
|
|
|
|
|
|
|
<!-- workaround for missing toolbar -->
|
|
|
|
<PreferenceCategory
|
|
|
|
android:title="@string/pref_screen_notification_profile_generic_social"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<ListPreference
|
|
|
|
android:defaultValue="12"
|
|
|
|
android:entries="@array/zetime_signaling_types"
|
|
|
|
android:entryValues="@array/zetime_signaling_types_values"
|
|
|
|
android:key="zetime_vibration_profile_generic_social"
|
|
|
|
android:title="@string/miband_prefs_vibration"
|
|
|
|
android:summary="%s" />
|
|
|
|
|
|
|
|
<Preference
|
|
|
|
android:key="zetime_try_generic_social"
|
|
|
|
android:persistent="false"
|
|
|
|
android:title="@string/vibration_try"/>
|
|
|
|
</PreferenceScreen>
|
|
|
|
|
|
|
|
<PreferenceScreen
|
|
|
|
android:key="vibration_profile_key"
|
|
|
|
android:title="@string/pref_screen_notification_profile_alarm_clock"
|
|
|
|
android:persistent="false">
|
|
|
|
|
|
|
|
<!-- workaround for missing toolbar -->
|
|
|
|
<PreferenceCategory
|
|
|
|
android:title="@string/pref_screen_notification_profile_alarm_clock"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<ListPreference
|
|
|
|
android:defaultValue="11"
|
|
|
|
android:entries="@array/zetime_signaling_types"
|
|
|
|
android:entryValues="@array/zetime_signaling_types_values"
|
|
|
|
android:key="zetime_alarm_signaling"
|
|
|
|
android:title="@string/miband_prefs_vibration"
|
|
|
|
android:summary="%s" />
|
|
|
|
|
|
|
|
<Preference
|
|
|
|
android:key="zetime_try_generic_alarm_clock"
|
|
|
|
android:persistent="false"
|
|
|
|
android:title="@string/vibration_try"/>
|
|
|
|
</PreferenceScreen>
|
|
|
|
|
|
|
|
<PreferenceScreen
|
|
|
|
android:key="vibration_profile_key"
|
|
|
|
android:title="@string/pref_screen_notification_profile_calendar"
|
|
|
|
android:persistent="false">
|
|
|
|
|
|
|
|
<!-- workaround for missing toolbar -->
|
|
|
|
<PreferenceCategory
|
|
|
|
android:title="@string/pref_screen_notification_profile_calendar"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<ListPreference
|
|
|
|
android:defaultValue="12"
|
|
|
|
android:entries="@array/zetime_signaling_types"
|
|
|
|
android:entryValues="@array/zetime_signaling_types_values"
|
|
|
|
android:key="zetime_vibration_profile_calendar"
|
|
|
|
android:title="@string/miband_prefs_vibration"
|
|
|
|
android:summary="%s" />
|
|
|
|
|
|
|
|
<Preference
|
|
|
|
android:key="zetime_try_calendar"
|
|
|
|
android:persistent="false"
|
|
|
|
android:title="@string/vibration_try"/>
|
|
|
|
</PreferenceScreen>
|
|
|
|
|
|
|
|
<PreferenceScreen
|
|
|
|
android:key="vibration_profile_key"
|
|
|
|
android:title="@string/pref_screen_notification_profile_inactivity"
|
|
|
|
android:persistent="false">
|
|
|
|
|
|
|
|
<!-- workaround for missing toolbar -->
|
|
|
|
<PreferenceCategory
|
|
|
|
android:title="@string/pref_screen_notification_profile_inactivity"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<ListPreference
|
|
|
|
android:defaultValue="12"
|
|
|
|
android:entries="@array/zetime_signaling_types"
|
|
|
|
android:entryValues="@array/zetime_signaling_types_values"
|
|
|
|
android:key="zetime_vibration_profile_inactivity"
|
|
|
|
android:title="@string/miband_prefs_vibration"
|
|
|
|
android:summary="%s" />
|
|
|
|
|
|
|
|
<Preference
|
|
|
|
android:key="zetime_try_inactivity"
|
|
|
|
android:persistent="false"
|
|
|
|
android:title="@string/vibration_try"/>
|
|
|
|
</PreferenceScreen>
|
|
|
|
|
|
|
|
<PreferenceScreen
|
|
|
|
android:key="vibration_profile_key"
|
|
|
|
android:title="@string/pref_screen_notification_profile_low_power"
|
|
|
|
android:persistent="false">
|
|
|
|
|
|
|
|
<!-- workaround for missing toolbar -->
|
|
|
|
<PreferenceCategory
|
|
|
|
android:title="@string/pref_screen_notification_profile_low_power"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<ListPreference
|
|
|
|
android:defaultValue="4"
|
|
|
|
android:entries="@array/zetime_signaling_types"
|
|
|
|
android:entryValues="@array/zetime_signaling_types_values"
|
|
|
|
android:key="zetime_vibration_profile_lowpower"
|
|
|
|
android:title="@string/miband_prefs_vibration"
|
|
|
|
android:summary="%s" />
|
|
|
|
|
|
|
|
<Preference
|
|
|
|
android:key="zetime_try_lowpower"
|
|
|
|
android:persistent="false"
|
|
|
|
android:title="@string/vibration_try"/>
|
|
|
|
</PreferenceScreen>
|
|
|
|
|
|
|
|
<PreferenceScreen
|
|
|
|
android:key="vibration_profile_key"
|
|
|
|
android:title="@string/pref_screen_notification_profile_anti_loss"
|
|
|
|
android:persistent="false">
|
|
|
|
|
|
|
|
<!-- workaround for missing toolbar -->
|
|
|
|
<PreferenceCategory
|
|
|
|
android:title="@string/pref_screen_notification_profile_anti_loss"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<ListPreference
|
|
|
|
android:defaultValue="13"
|
|
|
|
android:entries="@array/zetime_signaling_types"
|
|
|
|
android:entryValues="@array/zetime_signaling_types_values"
|
|
|
|
android:key="zetime_vibration_profile_antiloss"
|
|
|
|
android:title="@string/miband_prefs_vibration"
|
|
|
|
android:summary="%s" />
|
|
|
|
|
|
|
|
<Preference
|
|
|
|
android:key="zetime_try_antiloss"
|
|
|
|
android:persistent="false"
|
|
|
|
android:title="@string/vibration_try"/>
|
|
|
|
</PreferenceScreen>
|
|
|
|
|
|
|
|
</PreferenceCategory>
|
2018-09-14 13:32:18 +02:00
|
|
|
</PreferenceScreen>
|