OsmAnd/OsmAnd/res/xml/coordinates_format.xml

49 lines
1.5 KiB
XML
Raw Normal View History

2019-09-02 17:41:56 +02:00
<?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"
2019-09-03 13:39:31 +02:00
android:order="0"
2019-09-02 17:41:56 +02:00
android:persistent="false"
android:selectable="false"
2019-09-03 13:39:31 +02:00
android:title="@string/coordinates_format_info"
tools:icon="@drawable/ic_action_info_dark" />
2019-09-02 17:41:56 +02:00
<CheckBoxPreference
android:key="format_degrees"
android:layout="@layout/preference_radio_button"
2019-09-03 13:39:31 +02:00
android:order="1"
2019-09-02 17:41:56 +02:00
android:persistent="false"
2019-09-03 13:39:31 +02:00
android:title="@string/navigate_point_format_D" />
2019-09-02 17:41:56 +02:00
<CheckBoxPreference
android:key="format_minutes"
android:layout="@layout/preference_radio_button"
2019-09-03 13:39:31 +02:00
android:order="2"
2019-09-02 17:41:56 +02:00
android:persistent="false"
2019-09-03 13:39:31 +02:00
android:title="@string/navigate_point_format_DM" />
2019-09-02 17:41:56 +02:00
<CheckBoxPreference
android:key="format_seconds"
android:layout="@layout/preference_radio_button"
2019-09-03 13:39:31 +02:00
android:order="3"
2019-09-02 17:41:56 +02:00
android:persistent="false"
2019-09-03 13:39:31 +02:00
android:title="@string/navigate_point_format_DMS" />
2019-09-02 17:41:56 +02:00
2019-09-03 13:39:31 +02:00
<!-- This pref added in code -->
<!-- <CheckBoxPreference-->
<!-- android:key="utm_format"-->
<!-- android:layout="@layout/preference_radio_button"-->
<!-- android:persistent="false"-->
<!-- android:title="@string/navigate_point_format_utm" />-->
2019-09-02 17:41:56 +02:00
<CheckBoxPreference
2019-09-03 13:39:31 +02:00
android:key="olc_format"
2019-09-02 17:41:56 +02:00
android:layout="@layout/preference_radio_button"
2019-09-03 13:39:31 +02:00
android:order="5"
2019-09-02 17:41:56 +02:00
android:persistent="false"
2019-09-03 13:39:31 +02:00
android:title="@string/navigate_point_format_olc" />
2019-09-02 17:41:56 +02:00
</PreferenceScreen>