OsmAnd/OsmAnd/res/xml/coordinates_format.xml
2019-09-02 18:41:56 +03:00

47 lines
No EOL
1.5 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<Preference
android:key="coordinates_format_info"
android:layout="@layout/preference_info"
android:persistent="false"
android:selectable="false"
tools:title="@string/coordinates_format_info" />
<CheckBoxPreference
android:key="format_degrees"
android:layout="@layout/preference_radio_button"
android:persistent="false"
android:title="@string/navigate_point_format_D"
tools:summary="@string/fast_route_mode_descr" />
<CheckBoxPreference
android:key="format_minutes"
android:layout="@layout/preference_radio_button"
android:persistent="false"
android:title="@string/navigate_point_format_DM"
tools:summary="@string/fast_route_mode_descr" />
<CheckBoxPreference
android:key="format_seconds"
android:layout="@layout/preference_radio_button"
android:persistent="false"
android:title="@string/navigate_point_format_DMS"
tools:summary="@string/fast_route_mode_descr" />
<CheckBoxPreference
android:key="format_utm"
android:layout="@layout/preference_radio_button"
android:persistent="false"
android:title="@string/navigate_point_format_UTM"
tools:summary="@string/fast_route_mode_descr" />
<CheckBoxPreference
android:key="format_olc"
android:layout="@layout/preference_radio_button"
android:persistent="false"
android:title="@string/navigate_point_format_OLC"
tools:summary="@string/fast_route_mode_descr" />
</PreferenceScreen>