2020-01-16 15:50:48 +01: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"
|
|
|
|
android:key="proxy"
|
|
|
|
android:title="@string/live_monitoring">
|
|
|
|
|
|
|
|
<Preference
|
|
|
|
android:key="live_monitoring_info"
|
2020-01-21 18:08:11 +01:00
|
|
|
android:layout="@layout/preference_with_descr"
|
2020-01-16 15:50:48 +01:00
|
|
|
android:persistent="false"
|
|
|
|
android:selectable="false"
|
|
|
|
android:title="@string/live_monitoring_descr" />
|
|
|
|
|
|
|
|
<net.osmand.plus.settings.preferences.EditTextPreferenceEx
|
|
|
|
android:key="live_monitoring_url"
|
|
|
|
android:layout="@layout/preference_with_descr"
|
2020-01-21 18:08:11 +01:00
|
|
|
android:title="@string/live_monitoring_adress"
|
2020-01-16 15:50:48 +01:00
|
|
|
tools:icon="@drawable/ic_world_globe_dark"
|
|
|
|
tools:summary="@string/live_monitoring_m_descr" />
|
|
|
|
|
|
|
|
<net.osmand.plus.settings.preferences.ListPreferenceEx
|
|
|
|
android:key="live_monitoring_interval"
|
|
|
|
android:layout="@layout/preference_with_descr"
|
2020-01-21 18:08:11 +01:00
|
|
|
android:title="@string/live_monitoring_tracking_interval"
|
2020-01-16 15:50:48 +01:00
|
|
|
tools:icon="@drawable/ic_action_time_span"
|
|
|
|
tools:summary="5 seconds" />
|
|
|
|
|
|
|
|
<net.osmand.plus.settings.preferences.ListPreferenceEx
|
|
|
|
android:key="live_monitoring_maximum_interval_to_send"
|
|
|
|
android:layout="@layout/preference_with_descr"
|
2020-01-21 18:08:11 +01:00
|
|
|
android:title="@string/live_monitoring_time_buffer"
|
2020-01-16 15:50:48 +01:00
|
|
|
tools:icon="@drawable/ic_action_time_span"
|
|
|
|
tools:summary="15 min" />
|
|
|
|
|
|
|
|
</PreferenceScreen>
|