2012-07-08 16:00:10 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2014-11-17 16:25:17 +01:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-11-03 15:56:57 +01:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2020-02-24 15:17:23 +01:00
|
|
|
android:layout_marginLeft="@dimen/dialog_content_margin"
|
|
|
|
android:layout_marginTop="@dimen/content_padding"
|
|
|
|
android:layout_marginRight="@dimen/content_padding"
|
2019-12-31 13:27:42 +01:00
|
|
|
android:textColor="?android:attr/textColorSecondary"
|
2020-02-24 15:17:23 +01:00
|
|
|
android:layout_marginBottom="@dimen/content_padding_half"
|
|
|
|
android:text="@string/animate_routing_gpx"
|
|
|
|
android:layout_marginEnd="@dimen/content_padding"
|
|
|
|
android:layout_marginStart="@dimen/dialog_content_margin" />
|
2019-11-03 15:56:57 +01:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/layout_animate_gpx"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2020-02-24 15:17:23 +01:00
|
|
|
android:layout_marginLeft="@dimen/dialog_content_margin"
|
|
|
|
android:layout_marginTop="@dimen/map_small_button_margin"
|
|
|
|
android:layout_marginRight="@dimen/content_padding"
|
2019-12-31 13:27:42 +01:00
|
|
|
android:textColor="?android:attr/textColorSecondary"
|
2020-02-24 15:17:23 +01:00
|
|
|
android:gravity="start"
|
|
|
|
android:text="@string/select_animate_speedup"
|
|
|
|
android:layout_marginEnd="@dimen/content_padding"
|
|
|
|
android:layout_marginStart="@dimen/dialog_content_margin" />
|
2019-11-03 15:56:57 +01:00
|
|
|
|
2020-04-21 15:16:27 +02:00
|
|
|
<com.google.android.material.slider.Slider
|
2019-11-03 15:56:57 +01:00
|
|
|
android:id="@+id/Speedup"
|
2020-04-21 15:16:27 +02:00
|
|
|
style="@style/Widget.Styled.Slider"
|
|
|
|
android:layout_width="match_parent"
|
2019-11-03 15:56:57 +01:00
|
|
|
android:layout_height="wrap_content"
|
2020-02-24 15:17:23 +01:00
|
|
|
android:layout_marginLeft="@dimen/dialog_content_margin"
|
|
|
|
android:layout_marginTop="@dimen/map_small_button_margin"
|
|
|
|
android:layout_marginRight="@dimen/content_padding"
|
|
|
|
android:layout_marginStart="@dimen/dialog_content_margin"
|
|
|
|
android:layout_marginEnd="@dimen/content_padding" />
|
2019-11-03 15:56:57 +01:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2020-02-24 15:17:23 +01:00
|
|
|
android:layout_marginLeft="@dimen/dialog_content_margin"
|
|
|
|
android:layout_marginTop="@dimen/map_small_button_margin"
|
|
|
|
android:layout_marginRight="@dimen/content_padding"
|
|
|
|
android:layout_marginStart="@dimen/dialog_content_margin"
|
|
|
|
android:layout_marginEnd="@dimen/content_padding">
|
2019-11-03 15:56:57 +01:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/MinSpeedup"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2019-12-31 13:27:42 +01:00
|
|
|
android:textColor="?android:attr/textColorSecondary"
|
2019-11-03 15:56:57 +01:00
|
|
|
android:layout_weight="0.5"
|
2020-02-24 15:17:23 +01:00
|
|
|
android:gravity="start"
|
2019-11-03 15:56:57 +01:00
|
|
|
android:text="10" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/MaxSpeedup"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2019-12-31 13:27:42 +01:00
|
|
|
android:textColor="?android:attr/textColorSecondary"
|
2019-11-03 15:56:57 +01:00
|
|
|
android:layout_weight="0.5"
|
2020-02-24 15:17:23 +01:00
|
|
|
android:gravity="end"
|
2019-11-03 15:56:57 +01:00
|
|
|
android:text="15" />
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
2012-07-08 16:00:10 +02:00
|
|
|
</LinearLayout>
|