2015-05-01 00:56:16 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2021-11-02 23:30:37 +01:00
|
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
|
2015-05-01 00:56:16 +02:00
|
|
|
<PreferenceCategory
|
2015-05-04 01:03:56 +02:00
|
|
|
android:key="pref_key_general"
|
|
|
|
android:title="@string/pref_header_general">
|
2017-02-17 23:11:44 +01:00
|
|
|
<CheckBoxPreference
|
2018-08-15 23:53:15 +02:00
|
|
|
android:layout="@layout/preference_checkbox"
|
2017-02-17 23:11:44 +01:00
|
|
|
android:defaultValue="true"
|
|
|
|
android:key="general_autostartonboot"
|
|
|
|
android:title="@string/pref_title_general_autostartonboot" />
|
2015-05-04 01:03:56 +02:00
|
|
|
<CheckBoxPreference
|
2018-08-15 23:53:15 +02:00
|
|
|
android:layout="@layout/preference_checkbox"
|
2015-05-04 01:03:56 +02:00
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="general_autoconnectonbluetooth"
|
|
|
|
android:title="@string/pref_title_general_autoconnectonbluetooth" />
|
2016-04-28 23:17:13 +02:00
|
|
|
<CheckBoxPreference
|
2018-08-15 23:53:15 +02:00
|
|
|
android:layout="@layout/preference_checkbox"
|
2016-04-28 23:17:13 +02:00
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="general_autocreconnect"
|
2022-06-14 18:05:41 +02:00
|
|
|
android:title="@string/pref_title_general_autoreconnect"
|
|
|
|
android:enabled="false"
|
|
|
|
android:summary="setting has been moved to device specific settings"/>
|
2019-09-08 12:07:10 +02:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:layout="@layout/preference_checkbox"
|
|
|
|
android:defaultValue="true"
|
|
|
|
android:key="display_add_device_fab"
|
|
|
|
android:summaryOff="@string/pref_display_add_device_fab_off"
|
|
|
|
android:summaryOn="@string/pref_display_add_device_fab_on"
|
|
|
|
android:title="@string/pref_display_add_device_fab" />
|
|
|
|
|
2015-09-16 00:53:54 +02:00
|
|
|
<ListPreference
|
|
|
|
android:defaultValue="default"
|
2015-09-19 12:49:34 +02:00
|
|
|
android:key="audio_player"
|
2018-03-30 15:38:29 +02:00
|
|
|
android:title="@string/pref_title_audio_player"
|
2016-04-14 16:44:44 +02:00
|
|
|
android:summary="%s" />
|
2021-07-06 08:31:22 +02:00
|
|
|
|
|
|
|
<PreferenceScreen android:title="@string/pref_title_theme">
|
|
|
|
<ListPreference
|
|
|
|
android:defaultValue="@string/pref_theme_value_light"
|
|
|
|
android:entries="@array/pref_theme_options"
|
|
|
|
android:entryValues="@array/pref_theme_values"
|
|
|
|
android:key="pref_key_theme"
|
|
|
|
android:summary="%s"
|
|
|
|
android:title="@string/pref_title_theme" />
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="pref_key_theme_amoled_black"
|
|
|
|
android:layout="@layout/preference_checkbox"
|
|
|
|
android:title="@string/pref_theme_black_background" />
|
|
|
|
</PreferenceScreen>
|
2018-09-06 15:45:31 +02:00
|
|
|
|
|
|
|
<PreferenceScreen
|
|
|
|
android:key="language_category"
|
|
|
|
android:title="@string/language_and_region_prefs">
|
|
|
|
<ListPreference
|
|
|
|
android:defaultValue="default"
|
|
|
|
android:entries="@array/pref_language_options"
|
|
|
|
android:entryValues="@array/pref_language_values"
|
|
|
|
android:key="language"
|
|
|
|
android:summary="%s"
|
|
|
|
android:title="@string/pref_title_language" />
|
|
|
|
<ListPreference
|
|
|
|
android:defaultValue="metric"
|
|
|
|
android:entries="@array/pref_entries_unit_system"
|
|
|
|
android:entryValues="@array/pref_values_unit_system"
|
|
|
|
android:key="measurement_system"
|
|
|
|
android:summary="%s"
|
|
|
|
android:title="@string/pref_title_unit_system" />
|
|
|
|
<PreferenceScreen
|
|
|
|
android:title="@string/preferences_rtl_settings">
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:layout="@layout/preference_checkbox"
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="rtl"
|
|
|
|
android:summary="@string/pref_summary_rtl"
|
|
|
|
android:title="@string/pref_title_rtl" />
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:layout="@layout/preference_checkbox"
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="contextualArabic"
|
|
|
|
android:summary="@string/pref_summary_contextual_arabic"
|
|
|
|
android:title="@string/pref_title_contextual_arabic" />
|
|
|
|
<EditTextPreference
|
|
|
|
android:inputType="number"
|
|
|
|
android:key="rtl_max_line_length"
|
|
|
|
android:defaultValue="20"
|
|
|
|
android:maxLength="159"
|
|
|
|
android:title="@string/pref_rtl_max_line_length"
|
|
|
|
android:summary="@string/pref_rtl_max_line_length_summary"/>
|
|
|
|
</PreferenceScreen>
|
|
|
|
</PreferenceScreen>
|
|
|
|
|
2020-07-13 12:23:01 +02:00
|
|
|
<PreferenceScreen
|
|
|
|
android:title="@string/pref_title_weather"
|
|
|
|
android:summary="@string/pref_title_weather_summary">
|
|
|
|
|
2017-12-16 23:42:50 +01:00
|
|
|
<EditTextPreference
|
2020-07-13 12:23:01 +02:00
|
|
|
android:inputType="text"
|
2017-12-16 23:42:50 +01:00
|
|
|
android:key="weather_city"
|
|
|
|
android:title="@string/pref_title_weather_location" />
|
|
|
|
</PreferenceScreen>
|
2020-07-13 12:23:01 +02:00
|
|
|
|
2020-11-14 10:06:55 +01:00
|
|
|
</PreferenceCategory>
|
2017-02-07 10:15:23 +01:00
|
|
|
|
2020-11-14 10:06:55 +01:00
|
|
|
<Preference
|
|
|
|
android:key="pref_category_activity_personal"
|
|
|
|
android:title="@string/activity_prefs_about_you" />
|
2018-09-07 10:53:33 +02:00
|
|
|
|
2020-11-14 10:06:55 +01:00
|
|
|
<Preference
|
|
|
|
android:key="pref_charts"
|
|
|
|
android:title="@string/activity_prefs_charts" />
|
2018-08-16 13:13:12 +02:00
|
|
|
|
2015-05-01 00:56:16 +02:00
|
|
|
<PreferenceCategory
|
2015-05-04 01:03:56 +02:00
|
|
|
android:key="pref_key_datetime"
|
|
|
|
android:title="@string/pref_header_datetime">
|
2015-05-01 00:56:16 +02:00
|
|
|
<CheckBoxPreference
|
2018-08-15 23:53:15 +02:00
|
|
|
android:layout="@layout/preference_checkbox"
|
2015-05-01 00:56:16 +02:00
|
|
|
android:defaultValue="true"
|
|
|
|
android:key="datetime_synconconnect"
|
2015-05-10 13:08:28 +02:00
|
|
|
android:summary="@string/pref_summary_datetime_syctimeonconnect"
|
2015-05-01 00:56:16 +02:00
|
|
|
android:title="@string/pref_title_datetime_syctimeonconnect" />
|
|
|
|
</PreferenceCategory>
|
2021-11-02 23:30:37 +01:00
|
|
|
<PreferenceCategory android:title="@string/pref_header_location">
|
|
|
|
<Preference
|
|
|
|
android:key="location_aquire"
|
|
|
|
android:title="@string/pref_title_location_aquire" />
|
|
|
|
<EditTextPreference
|
|
|
|
android:defaultValue="0"
|
|
|
|
android:inputType="numberDecimal|numberSigned"
|
|
|
|
android:key="location_latitude"
|
|
|
|
android:maxLength="7"
|
|
|
|
android:title="@string/pref_title_location_latitude" />
|
|
|
|
<EditTextPreference
|
|
|
|
android:defaultValue="0"
|
|
|
|
android:inputType="numberDecimal|numberSigned"
|
|
|
|
android:key="location_longitude"
|
|
|
|
android:maxLength="7"
|
|
|
|
android:title="@string/pref_title_location_longitude" />
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="true"
|
|
|
|
android:dependency="location_aquire"
|
|
|
|
android:key="use_updated_location_if_available"
|
|
|
|
android:layout="@layout/preference_checkbox"
|
|
|
|
android:summary="@string/pref_summary_location_keep_uptodate"
|
|
|
|
android:title="@string/pref_title_location_keep_uptodate" />
|
2022-02-25 07:27:08 +01:00
|
|
|
<Preference
|
|
|
|
android:key="pref_key_opentracks_packagename"
|
|
|
|
android:summary="@string/pref_summary_opentracks_packagename"
|
|
|
|
android:title="@string/pref_title_opentracks_packagename" />
|
2021-11-02 23:30:37 +01:00
|
|
|
</PreferenceCategory>
|
|
|
|
<PreferenceCategory android:title="@string/preferences_category_device_specific_settings">
|
2019-07-14 19:45:40 +02:00
|
|
|
|
|
|
|
<Preference
|
|
|
|
android:icon="@drawable/ic_device_pebble"
|
|
|
|
android:key="pref_key_qhybrid"
|
|
|
|
android:title="@string/preferences_qhybrid_settings" />
|
|
|
|
|
2015-05-07 01:30:40 +02:00
|
|
|
<Preference
|
2015-06-20 23:22:22 +02:00
|
|
|
android:icon="@drawable/ic_device_miband"
|
2015-09-16 00:53:54 +02:00
|
|
|
android:key="pref_key_miband"
|
2015-05-07 01:30:40 +02:00
|
|
|
android:title="@string/preferences_miband_settings" />
|
2018-08-06 10:59:38 +02:00
|
|
|
|
2015-06-19 12:34:33 +02:00
|
|
|
<PreferenceScreen
|
2015-06-20 23:22:22 +02:00
|
|
|
android:icon="@drawable/ic_device_pebble"
|
2015-09-16 00:53:54 +02:00
|
|
|
android:key="pref_key_pebble"
|
|
|
|
android:title="@string/pref_title_pebble_settings">
|
2015-09-19 12:49:34 +02:00
|
|
|
<PreferenceCategory
|
|
|
|
android:title="@string/pref_header_general">
|
2017-01-09 14:41:02 +01:00
|
|
|
<CheckBoxPreference
|
2018-08-15 23:53:15 +02:00
|
|
|
android:layout="@layout/preference_checkbox"
|
2017-01-09 14:41:02 +01:00
|
|
|
android:defaultValue="true"
|
|
|
|
android:key="pebble_enable_outgoing_call"
|
|
|
|
android:summary="@string/pref_summary_enable_outgoing_call"
|
|
|
|
android:title="@string/pref_title_enable_outgoing_call" />
|
2015-09-19 12:49:34 +02:00
|
|
|
<CheckBoxPreference
|
2018-08-15 23:53:15 +02:00
|
|
|
android:layout="@layout/preference_checkbox"
|
2015-09-19 12:49:34 +02:00
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="pebble_enable_pebblekit"
|
|
|
|
android:summary="@string/pref_summary_enable_pebblekit"
|
|
|
|
android:title="@string/pref_title_enable_pebblekit" />
|
|
|
|
<EditTextPreference
|
|
|
|
android:defaultValue="12"
|
|
|
|
android:inputType="number"
|
|
|
|
android:key="pebble_reconnect_attempts"
|
|
|
|
android:maxLength="4"
|
|
|
|
android:title="@string/pref_title_pebble_reconnect_attempts" />
|
2017-02-05 16:37:59 +01:00
|
|
|
<ListPreference
|
|
|
|
android:key="pebble_pref_privacy_mode"
|
|
|
|
android:title="@string/pref_title_pebble_privacy_mode"
|
|
|
|
android:entries="@array/pebble_privacymode"
|
|
|
|
android:entryValues="@array/pebble_privacymode_values"
|
|
|
|
android:defaultValue="@string/p_pebble_privacy_mode_off"
|
|
|
|
android:summary="%s" />
|
2016-06-07 22:51:14 +02:00
|
|
|
</PreferenceCategory>
|
2017-04-24 12:39:40 +02:00
|
|
|
<PreferenceCategory android:title="@string/pref_header_pebble_timeline">
|
|
|
|
<CheckBoxPreference
|
2018-08-15 23:53:15 +02:00
|
|
|
android:layout="@layout/preference_checkbox"
|
2017-04-24 12:39:40 +02:00
|
|
|
android:key="send_sunrise_sunset"
|
|
|
|
android:summary="@string/pref_summary_sunrise_sunset"
|
|
|
|
android:title="@string/pref_title_sunrise_sunset" />
|
|
|
|
</PreferenceCategory>
|
2016-06-07 22:51:14 +02:00
|
|
|
<PreferenceCategory android:title="@string/pref_header_activitytrackers">
|
2016-02-18 20:41:22 +01:00
|
|
|
<ListPreference
|
|
|
|
android:defaultValue="4"
|
|
|
|
android:entries="@array/pebble_activitytracker"
|
|
|
|
android:entryValues="@array/pebble_activitytracker_values"
|
|
|
|
android:key="pebble_activitytracker"
|
2016-06-07 22:51:14 +02:00
|
|
|
android:summary="%s"
|
|
|
|
android:title="@string/pref_title_pebble_activitytracker" />
|
2016-05-29 21:29:27 +02:00
|
|
|
<CheckBoxPreference
|
2018-08-15 23:53:15 +02:00
|
|
|
android:layout="@layout/preference_checkbox"
|
2016-06-07 22:51:14 +02:00
|
|
|
android:defaultValue="true"
|
|
|
|
android:key="pebble_sync_health"
|
|
|
|
android:title="@string/pref_title_pebble_sync_health" />
|
2016-08-31 14:05:02 +02:00
|
|
|
<CheckBoxPreference
|
2018-08-15 23:53:15 +02:00
|
|
|
android:layout="@layout/preference_checkbox"
|
2016-08-31 14:05:02 +02:00
|
|
|
android:defaultValue="true"
|
|
|
|
android:key="pebble_health_store_raw"
|
|
|
|
android:dependency="pebble_sync_health"
|
|
|
|
android:title="@string/pref_title_pebble_health_store_raw"
|
|
|
|
android:summary="@string/pref_summary_pebble_health_store_raw" />
|
2016-06-07 22:51:14 +02:00
|
|
|
<CheckBoxPreference
|
2018-08-15 23:53:15 +02:00
|
|
|
android:layout="@layout/preference_checkbox"
|
2016-06-07 22:51:14 +02:00
|
|
|
android:defaultValue="true"
|
|
|
|
android:key="pebble_sync_misfit"
|
|
|
|
android:title="@string/pref_title_pebble_sync_misfit" />>
|
|
|
|
<CheckBoxPreference
|
2018-08-15 23:53:15 +02:00
|
|
|
android:layout="@layout/preference_checkbox"
|
2016-06-07 22:51:14 +02:00
|
|
|
android:defaultValue="true"
|
|
|
|
android:key="pebble_sync_morpheuz"
|
|
|
|
android:title="@string/pref_title_pebble_sync_morpheuz" />
|
2015-09-19 12:49:34 +02:00
|
|
|
</PreferenceCategory>
|
2016-05-26 14:39:54 +02:00
|
|
|
<PreferenceCategory
|
2015-06-19 12:34:33 +02:00
|
|
|
android:title="@string/pref_header_development">
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="pebble_force_protocol"
|
2018-09-06 15:45:31 +02:00
|
|
|
android:layout="@layout/preference_checkbox"
|
2015-09-16 00:53:54 +02:00
|
|
|
android:summary="@string/pref_summary_pebble_forceprotocol"
|
|
|
|
android:title="@string/pref_title_pebble_forceprotocol" />
|
2015-08-11 11:15:44 +02:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="pebble_force_untested"
|
2018-09-06 15:45:31 +02:00
|
|
|
android:layout="@layout/preference_checkbox"
|
2015-09-16 00:53:54 +02:00
|
|
|
android:summary="@string/pref_summary_pebble_forceuntested"
|
|
|
|
android:title="@string/pref_title_pebble_forceuntested" />
|
2016-11-27 09:49:28 +01:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="pebble_force_le"
|
2018-09-06 15:45:31 +02:00
|
|
|
android:layout="@layout/preference_checkbox"
|
2016-11-27 09:49:28 +01:00
|
|
|
android:summary="@string/pref_summary_pebble_forcele"
|
|
|
|
android:title="@string/pref_title_pebble_forcele" />
|
2016-12-19 23:28:06 +01:00
|
|
|
<EditTextPreference
|
|
|
|
android:inputType="number"
|
|
|
|
android:key="pebble_mtu_limit"
|
|
|
|
android:maxLength="3"
|
|
|
|
android:defaultValue="512"
|
|
|
|
android:title="@string/pref_title_pebble_mtu_limit"
|
|
|
|
android:summary="@string/pref_summary_pebble_mtu_limit" />
|
2018-05-11 14:23:41 +02:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="pebble_gatt_clientonly"
|
2018-09-06 15:45:31 +02:00
|
|
|
android:layout="@layout/preference_checkbox"
|
|
|
|
android:summary="@string/pref_summary_pebble_gatt_clientonly"
|
|
|
|
android:title="@string/pref_title_pebble_gatt_clientonly" />
|
2016-12-04 16:54:47 +01:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="pebble_enable_applogs"
|
2018-09-06 15:45:31 +02:00
|
|
|
android:layout="@layout/preference_checkbox"
|
2016-12-04 16:54:47 +01:00
|
|
|
android:summary="@string/pref_summary_pebble_enable_applogs"
|
|
|
|
android:title="@string/pref_title_pebble_enable_applogs" />
|
2017-02-10 23:06:34 +01:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="pebble_always_ack_pebblekit"
|
2018-09-06 15:45:31 +02:00
|
|
|
android:layout="@layout/preference_checkbox"
|
2017-02-10 23:06:34 +01:00
|
|
|
android:summary="@string/pref_summary_pebble_always_ack_pebblekit"
|
|
|
|
android:title="@string/pref_title_pebble_always_ack_pebblekit" />
|
2017-09-25 17:12:35 +02:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="false"
|
2017-10-10 22:00:01 +02:00
|
|
|
android:dependency="pebble_force_untested"
|
2018-09-06 15:45:31 +02:00
|
|
|
android:key="pebble_enable_background_javascript"
|
|
|
|
android:layout="@layout/preference_checkbox"
|
2017-09-25 17:12:35 +02:00
|
|
|
android:summary="@string/pref_summary_pebble_enable_bgjs"
|
|
|
|
android:title="@string/pref_title_pebble_enable_bgjs" />
|
2015-08-19 00:03:52 +02:00
|
|
|
<EditTextPreference
|
|
|
|
android:digits="0123456789."
|
|
|
|
android:key="pebble_emu_addr"
|
|
|
|
android:maxLength="15"
|
|
|
|
android:title="Emulator IP" />
|
|
|
|
<EditTextPreference
|
|
|
|
android:inputType="number"
|
|
|
|
android:key="pebble_emu_port"
|
|
|
|
android:maxLength="5"
|
|
|
|
android:title="Emulator Port" />
|
2015-06-19 12:34:33 +02:00
|
|
|
</PreferenceCategory>
|
|
|
|
</PreferenceScreen>
|
2017-02-06 02:33:15 +01:00
|
|
|
<PreferenceScreen
|
|
|
|
android:icon="@drawable/ic_device_hplus"
|
|
|
|
android:key="pref_key_hplus"
|
|
|
|
android:title="@string/preferences_hplus_settings">
|
|
|
|
<PreferenceCategory
|
|
|
|
android:key="pref_category_hplus_general"
|
|
|
|
android:title="@string/pref_header_general">
|
|
|
|
|
|
|
|
<EditTextPreference
|
|
|
|
android:defaultValue="5"
|
|
|
|
android:key="hplus_screentime"
|
|
|
|
android:title="@string/pref_title_screentime"/>
|
|
|
|
|
|
|
|
<CheckBoxPreference
|
2018-08-21 20:27:00 +02:00
|
|
|
android:layout="@layout/preference_checkbox"
|
2017-02-06 02:33:15 +01:00
|
|
|
android:defaultValue="true"
|
|
|
|
android:key="hplus_alldayhr"
|
|
|
|
android:title="@string/prefs_title_all_day_heart_rate" />
|
|
|
|
|
|
|
|
</PreferenceCategory>
|
|
|
|
|
|
|
|
</PreferenceScreen>
|
2019-10-05 22:35:30 +02:00
|
|
|
<Preference
|
2018-09-07 13:24:54 +02:00
|
|
|
android:icon="@drawable/ic_device_zetime"
|
2018-09-06 14:51:29 +02:00
|
|
|
android:key="pref_key_zetime"
|
2018-09-14 13:32:18 +02:00
|
|
|
android:title="@string/zetime_title_settings"/>
|
2015-05-07 01:30:40 +02:00
|
|
|
</PreferenceCategory>
|
2015-05-23 00:45:12 +02:00
|
|
|
|
2018-01-04 15:13:06 +01:00
|
|
|
<PreferenceCategory
|
2018-01-08 11:27:28 +01:00
|
|
|
android:title="@string/pref_header_auto_export">
|
2022-10-29 01:28:45 +02:00
|
|
|
<Preference
|
|
|
|
android:key="auto_export_location"
|
|
|
|
android:title="@string/pref_title_auto_export_location"
|
|
|
|
android:summary="%s" />
|
2018-01-04 15:13:06 +01:00
|
|
|
<CheckBoxPreference
|
2018-08-15 23:53:15 +02:00
|
|
|
android:layout="@layout/preference_checkbox"
|
2018-01-04 15:13:06 +01:00
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="auto_export_enabled"
|
2018-01-08 11:27:28 +01:00
|
|
|
android:title="@string/pref_title_auto_export_enabled" />
|
2018-01-04 15:13:06 +01:00
|
|
|
<EditTextPreference
|
2022-05-14 15:41:46 +02:00
|
|
|
android:dependency="auto_export_enabled"
|
2018-01-04 15:13:06 +01:00
|
|
|
android:inputType="number"
|
2018-01-08 11:27:28 +01:00
|
|
|
android:key="auto_export_interval"
|
2018-01-04 15:13:06 +01:00
|
|
|
android:defaultValue="3"
|
|
|
|
android:maxLength="3"
|
2018-01-08 11:27:28 +01:00
|
|
|
android:title="@string/pref_title_auto_export_interval"
|
|
|
|
android:summary="@string/pref_summary_auto_export_interval"/>
|
2018-01-04 15:13:06 +01:00
|
|
|
</PreferenceCategory>
|
2018-06-19 21:54:15 +02:00
|
|
|
|
|
|
|
<PreferenceCategory
|
2020-04-05 14:27:26 +02:00
|
|
|
android:title="@string/pref_header_auto_fetch">
|
2018-06-19 21:54:15 +02:00
|
|
|
<CheckBoxPreference
|
2018-08-15 23:53:15 +02:00
|
|
|
android:layout="@layout/preference_checkbox"
|
2018-06-19 21:54:15 +02:00
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="auto_fetch_enabled"
|
2018-06-23 11:19:09 +02:00
|
|
|
android:title="@string/pref_auto_fetch"
|
|
|
|
android:summary="@string/pref_auto_fetch_summary"/>
|
2018-06-30 17:32:12 +02:00
|
|
|
<EditTextPreference
|
2022-05-14 15:41:46 +02:00
|
|
|
android:dependency="auto_fetch_enabled"
|
2018-06-30 17:32:12 +02:00
|
|
|
android:inputType="number"
|
|
|
|
android:key="auto_fetch_interval_limit"
|
|
|
|
android:defaultValue="0"
|
|
|
|
android:maxLength="3"
|
|
|
|
android:title="@string/pref_auto_fetch_limit_fetches"
|
|
|
|
android:summary="@string/pref_auto_fetch_limit_fetches_summary"/>
|
2018-06-19 21:54:15 +02:00
|
|
|
</PreferenceCategory>
|
|
|
|
|
2015-06-13 00:58:23 +02:00
|
|
|
<PreferenceCategory
|
|
|
|
android:key="pref_key_development"
|
|
|
|
android:title="@string/pref_header_development">
|
|
|
|
<CheckBoxPreference
|
2018-08-15 23:53:15 +02:00
|
|
|
android:layout="@layout/preference_checkbox"
|
2015-06-13 00:58:23 +02:00
|
|
|
android:defaultValue="false"
|
2015-06-13 01:12:08 +02:00
|
|
|
android:key="log_to_file"
|
2015-06-13 00:58:23 +02:00
|
|
|
android:title="@string/pref_write_logfiles" />
|
2020-08-01 16:27:01 +02:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="true"
|
|
|
|
android:key="permission_pestering"
|
|
|
|
android:layout="@layout/preference_checkbox"
|
|
|
|
android:summary="@string/pref_check_permission_status_summary"
|
|
|
|
android:title="@string/pref_check_permission_status" />
|
2022-08-18 23:03:28 +02:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:layout="@layout/preference_checkbox"
|
|
|
|
android:defaultValue="true"
|
|
|
|
android:key="cache_weather"
|
|
|
|
android:summary="@string/pref_cache_weather_summary"
|
|
|
|
android:title="@string/pref_cache_weather" />
|
2021-12-23 18:56:36 +01:00
|
|
|
<Preference
|
|
|
|
android:key="pref_discovery_pairing"
|
|
|
|
android:title="@string/activity_prefs_discovery_pairing" />
|
2022-10-29 01:28:45 +02:00
|
|
|
</PreferenceCategory>
|
|
|
|
|
|
|
|
<PreferenceCategory
|
|
|
|
android:key="pref_key_intent_api"
|
|
|
|
android:title="@string/pref_header_intent_api">
|
2021-12-23 18:56:36 +01:00
|
|
|
|
2022-09-04 23:05:57 +02:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="prefs_key_allow_bluetooth_intent_api"
|
|
|
|
android:title="@string/activity_prefs_allow_bluetooth_intent_api"
|
|
|
|
android:summary="@string/activity_prefs_summary_allow_bluetooth_intent_api" />
|
|
|
|
|
2022-10-29 01:28:45 +02:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="intent_api_allow_activity_sync"
|
|
|
|
android:title="@string/intent_api_allow_activity_sync_title"
|
|
|
|
android:summary="@string/intent_api_allow_activity_sync_summary" />
|
|
|
|
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="intent_api_allow_trigger_export"
|
|
|
|
android:title="@string/intent_api_allow_trigger_export_title"
|
|
|
|
android:summary="@string/intent_api_allow_trigger_export_summary" />
|
|
|
|
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="intent_api_broadcast_export"
|
|
|
|
android:title="@string/intent_api_broadcast_export_title"
|
|
|
|
android:summary="@string/intent_api_broadcast_export_summary" />
|
2015-06-13 00:58:23 +02:00
|
|
|
</PreferenceCategory>
|
2015-05-10 13:08:28 +02:00
|
|
|
</PreferenceScreen>
|