2013-05-09 19:24:30 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
|
2016-06-01 18:09:49 +02:00
|
|
|
|
2017-09-01 17:57:36 +02:00
|
|
|
<PreferenceCategory
|
|
|
|
android:key="routing_preferences"
|
|
|
|
android:title="@string/routing_preferences_descr">
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="fast_route_mode"
|
|
|
|
android:summary="@string/fast_route_mode_descr"
|
|
|
|
android:title="@string/fast_route_mode"/>
|
|
|
|
<Preference
|
|
|
|
android:key="avoid_in_routing"
|
|
|
|
android:summary="@string/avoid_in_routing_descr"
|
|
|
|
android:title="@string/avoid_in_routing_title"/>
|
|
|
|
<Preference
|
|
|
|
android:key="prefer_in_routing"
|
|
|
|
android:summary="@string/prefer_in_routing_descr"
|
|
|
|
android:title="@string/prefer_in_routing_title"/>
|
|
|
|
</PreferenceCategory>
|
2016-06-01 18:09:49 +02:00
|
|
|
|
2017-09-01 17:57:36 +02:00
|
|
|
<PreferenceCategory
|
|
|
|
android:key="guidance_preferences"
|
|
|
|
android:title="@string/guidance_preferences_descr">
|
|
|
|
<ListPreference
|
|
|
|
android:key="auto_follow_route"
|
|
|
|
android:summary="@string/choose_auto_follow_route_descr"
|
|
|
|
android:title="@string/choose_auto_follow_route"/>
|
|
|
|
<Preference
|
|
|
|
android:key="auto_zoom_map_on_off"
|
|
|
|
android:summary="@string/auto_zoom_map_descr"
|
|
|
|
android:title="@string/auto_zoom_map"/>
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="snap_to_road"
|
|
|
|
android:summary="@string/snap_to_road_descr"
|
|
|
|
android:title="@string/snap_to_road"/>
|
2019-07-22 11:27:01 +02:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="enable_time_conditional_routing"
|
|
|
|
android:title="@string/temporary_conditional_routing"/>
|
2017-09-01 17:57:36 +02:00
|
|
|
<Preference
|
|
|
|
android:key="show_routing_alarms"
|
|
|
|
android:summary="@string/show_warnings_descr"
|
|
|
|
android:title="@string/show_warnings_title"/>
|
|
|
|
<Preference
|
|
|
|
android:key="speak_routing_alarms"
|
|
|
|
android:summary="@string/speak_descr"
|
|
|
|
android:title="@string/speak_title"/>
|
|
|
|
<ListPreference
|
|
|
|
android:key="keep_informing"
|
|
|
|
android:summary="@string/keep_informing_descr"
|
|
|
|
android:title="@string/keep_informing"/>
|
|
|
|
<ListPreference
|
|
|
|
android:key="arrival_distance_factor"
|
|
|
|
android:summary="@string/arrival_distance_descr"
|
|
|
|
android:title="@string/arrival_distance"/>
|
|
|
|
<ListPreference
|
|
|
|
android:key="default_speed_system"
|
|
|
|
android:summary="@string/default_speed_system_descr"
|
|
|
|
android:title="@string/default_speed_system"/>
|
|
|
|
<ListPreference
|
|
|
|
android:key="speed_limit_exceed"
|
|
|
|
android:summary="@string/speed_limit_exceed_message"
|
|
|
|
android:title="@string/speed_limit_exceed"/>
|
|
|
|
<ListPreference
|
|
|
|
android:key="speed_for_map_to_direction_of_movement"
|
2017-09-07 17:51:04 +02:00
|
|
|
android:summary="@string/map_orientation_change_in_accordance_with_speed_descr"
|
|
|
|
android:title="@string/map_orientation_change_in_accordance_with_speed"/>
|
2017-09-01 17:57:36 +02:00
|
|
|
<!--
|
|
|
|
<CheckBoxPreference android:title="@string/show_zoom_buttons_navigation" android:summary="@string/show_zoom_buttons_navigation_descr" android:key="show_zoom_buttons_navigation" />
|
|
|
|
-->
|
|
|
|
<!--
|
|
|
|
<ListPreference
|
|
|
|
android:key="delay_to_start_navigation"
|
|
|
|
android:title="@string/delay_to_start_navigation"
|
|
|
|
android:summary="@string/delay_to_start_navigation_descr" />
|
|
|
|
-->
|
|
|
|
</PreferenceCategory>
|
2017-04-01 19:57:03 +02:00
|
|
|
|
2019-07-02 18:07:53 +02:00
|
|
|
<PreferenceCategory
|
|
|
|
android:key="turn_screen_on"
|
2019-07-04 13:17:30 +02:00
|
|
|
android:title="@string/wake_on_voice">
|
2019-07-02 18:07:53 +02:00
|
|
|
|
2019-07-06 17:37:32 +02:00
|
|
|
<Preference
|
|
|
|
android:selectable="false"
|
|
|
|
android:summary="@string/wake_on_voice_descr" />
|
|
|
|
|
2019-07-02 18:07:53 +02:00
|
|
|
<ListPreference
|
2019-07-04 13:17:30 +02:00
|
|
|
android:key="turn_screen_on_time_int"
|
|
|
|
android:summary="@string/turn_screen_on_time_descr"
|
2019-07-04 10:30:16 +02:00
|
|
|
android:title="@string/shared_string_time"/>
|
2019-07-04 17:50:48 +02:00
|
|
|
|
2019-07-04 13:17:30 +02:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="turn_screen_on_sensor"
|
|
|
|
android:summary="@string/turn_screen_on_sensor_descr"
|
|
|
|
android:title="@string/turn_screen_on_sensor"/>
|
2019-07-02 18:07:53 +02:00
|
|
|
</PreferenceCategory>
|
|
|
|
|
2017-09-01 17:57:36 +02:00
|
|
|
<PreferenceCategory
|
|
|
|
android:key="voice"
|
|
|
|
android:title="@string/voice_pref_title">
|
|
|
|
<ListPreference
|
|
|
|
android:key="voice_provider"
|
|
|
|
android:summary="@string/voice_provider_descr"
|
|
|
|
android:title="@string/voice_provider"/>
|
|
|
|
</PreferenceCategory>
|
2017-04-01 19:57:03 +02:00
|
|
|
|
2013-05-09 19:24:30 +02:00
|
|
|
</PreferenceScreen>
|