2017-06-29 18:03:33 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
xmlns:osmand="http://schemas.android.com/apk/res-auto"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_width="match_parent"
|
2017-07-03 18:10:00 +02:00
|
|
|
android:layout_height="wrap_content">
|
2017-06-29 18:03:33 +02:00
|
|
|
|
2017-06-30 18:01:01 +02:00
|
|
|
<include layout="@layout/list_item_divider"/>
|
2017-06-29 18:03:33 +02:00
|
|
|
|
|
|
|
<LinearLayout
|
2017-06-30 18:01:01 +02:00
|
|
|
android:orientation="vertical"
|
2017-06-29 18:03:33 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2017-06-30 18:01:01 +02:00
|
|
|
android:background="?attr/bg_color"
|
|
|
|
android:paddingLeft="16dp"
|
|
|
|
android:paddingRight="16dp">
|
2017-06-29 18:03:33 +02:00
|
|
|
|
|
|
|
<LinearLayout
|
2017-06-30 18:01:01 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="40dp"
|
2017-06-29 18:03:33 +02:00
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<ImageView
|
2017-06-30 18:01:01 +02:00
|
|
|
android:id="@+id/overview_image"
|
2017-06-29 18:03:33 +02:00
|
|
|
android:layout_width="16dp"
|
|
|
|
android:layout_height="16dp"
|
2017-07-01 13:55:45 +02:00
|
|
|
tools:src="@drawable/ic_action_split_interval"
|
2017-07-10 15:22:45 +02:00
|
|
|
android:layout_gravity="center_vertical"
|
2017-06-29 18:03:33 +02:00
|
|
|
android:layout_marginRight="12dp"/>
|
|
|
|
|
2017-06-30 18:01:01 +02:00
|
|
|
<net.osmand.plus.widgets.TextViewEx
|
|
|
|
android:id="@+id/overview_text"
|
|
|
|
android:background="@null"
|
|
|
|
android:layout_gravity="center_vertical"
|
2017-06-29 18:03:33 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2017-06-30 18:01:01 +02:00
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
|
|
osmand:typeface="@string/font_roboto_medium"
|
2017-07-06 10:20:50 +02:00
|
|
|
android:textSize="@dimen/default_split_segments_overview"
|
2017-06-30 18:01:01 +02:00
|
|
|
tools:text="Overview"/>
|
|
|
|
|
2017-07-03 18:10:00 +02:00
|
|
|
<TextView
|
|
|
|
tools:text="1 of 4"
|
2017-06-30 18:01:01 +02:00
|
|
|
android:id="@+id/fragment_count_text"
|
|
|
|
android:background="@null"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:gravity="right"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2017-07-03 18:10:00 +02:00
|
|
|
android:textColor="?android:attr/textColorSecondary"
|
2017-07-06 10:20:50 +02:00
|
|
|
android:textSize="@dimen/default_split_segments_overview"/>
|
2017-06-29 18:03:33 +02:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
2017-06-30 18:01:01 +02:00
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="1dp"
|
|
|
|
android:layout_marginLeft="28dp"
|
|
|
|
android:background="?attr/dashboard_divider"/>
|
|
|
|
|
2017-06-29 18:03:33 +02:00
|
|
|
<LinearLayout
|
2017-06-30 18:01:01 +02:00
|
|
|
android:layout_width="match_parent"
|
2017-06-29 18:03:33 +02:00
|
|
|
android:layout_height="wrap_content"
|
2017-06-30 18:01:01 +02:00
|
|
|
android:orientation="horizontal"
|
2017-07-10 15:22:45 +02:00
|
|
|
android:layout_marginTop="7dp"
|
2017-07-07 09:49:36 +02:00
|
|
|
android:layout_marginBottom="8dp">
|
2017-06-29 18:03:33 +02:00
|
|
|
|
|
|
|
<LinearLayout
|
2017-06-30 18:01:01 +02:00
|
|
|
android:layout_marginRight="3dp"
|
2017-07-03 18:10:00 +02:00
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_weight="1"
|
2017-06-29 18:03:33 +02:00
|
|
|
android:layout_height="wrap_content"
|
2017-06-30 18:01:01 +02:00
|
|
|
android:orientation="horizontal">
|
2017-06-29 18:03:33 +02:00
|
|
|
|
2017-06-30 18:01:01 +02:00
|
|
|
<ImageView
|
2017-07-10 15:22:45 +02:00
|
|
|
android:layout_marginTop="2dp"
|
2017-06-30 18:01:01 +02:00
|
|
|
android:id="@+id/distance_or_timespan_image"
|
|
|
|
android:layout_width="16dp"
|
|
|
|
android:layout_height="16dp"
|
2017-07-01 13:55:45 +02:00
|
|
|
tools:src="@drawable/ic_action_track_16"
|
2017-06-30 18:01:01 +02:00
|
|
|
android:layout_marginRight="12dp"/>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="wrap_content"
|
2017-06-29 18:03:33 +02:00
|
|
|
android:layout_height="wrap_content"
|
2017-06-30 18:01:01 +02:00
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<net.osmand.plus.widgets.TextViewEx
|
|
|
|
android:id="@+id/distance_or_time_span_value"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="@null"
|
|
|
|
tools:text="40 km"
|
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
|
|
osmand:typeface="@string/font_roboto_medium"
|
2017-07-06 10:20:50 +02:00
|
|
|
android:textSize="@dimen/default_split_segments_data"/>
|
2017-06-30 18:01:01 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/distance_or_time_span_text"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="@null"
|
2017-07-10 15:22:45 +02:00
|
|
|
android:layout_marginTop="1dp"
|
2017-07-03 18:10:00 +02:00
|
|
|
tools:text="@string/distance"
|
2017-06-30 18:01:01 +02:00
|
|
|
android:textColor="?android:attr/textColorSecondary"
|
2017-07-06 10:20:50 +02:00
|
|
|
android:textSize="@dimen/default_split_segments_sub"/>
|
2017-06-30 18:01:01 +02:00
|
|
|
|
|
|
|
</LinearLayout>
|
2017-06-29 18:03:33 +02:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
2017-06-30 18:01:01 +02:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_marginRight="3dp"
|
2017-07-03 18:10:00 +02:00
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_weight="1"
|
2017-06-30 18:01:01 +02:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal">
|
2017-06-29 18:03:33 +02:00
|
|
|
|
2017-06-30 18:01:01 +02:00
|
|
|
<ImageView
|
2017-07-10 15:22:45 +02:00
|
|
|
android:layout_marginTop="2dp"
|
2017-07-01 13:55:45 +02:00
|
|
|
android:id="@+id/start_time_image"
|
2017-06-30 18:01:01 +02:00
|
|
|
android:layout_width="16dp"
|
|
|
|
android:layout_height="16dp"
|
2017-07-01 13:55:45 +02:00
|
|
|
tools:src="@drawable/ic_action_time_start_16"
|
2017-06-30 18:01:01 +02:00
|
|
|
android:layout_marginRight="12dp"/>
|
2017-06-29 18:03:33 +02:00
|
|
|
|
2017-06-30 18:01:01 +02:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<net.osmand.plus.widgets.TextViewEx
|
|
|
|
android:id="@+id/start_time_value"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="@null"
|
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
2017-07-10 15:22:45 +02:00
|
|
|
android:textSize="@dimen/default_split_segments_data"
|
2017-06-30 18:01:01 +02:00
|
|
|
osmand:typeface="@string/font_roboto_medium"
|
2017-07-10 15:22:45 +02:00
|
|
|
tools:text="15:24:58" />
|
2017-06-30 18:01:01 +02:00
|
|
|
|
|
|
|
<TextView
|
2017-07-01 13:55:45 +02:00
|
|
|
android:id="@+id/start_date_value"
|
2017-06-30 18:01:01 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="@null"
|
2017-07-10 15:22:45 +02:00
|
|
|
android:layout_marginTop="1dp"
|
2017-07-03 18:10:00 +02:00
|
|
|
tools:text="Aud 8, 2016"
|
2017-06-30 18:01:01 +02:00
|
|
|
android:textColor="?android:attr/textColorSecondary"
|
2017-07-06 10:20:50 +02:00
|
|
|
android:textSize="@dimen/default_split_segments_sub"/>
|
2017-06-30 18:01:01 +02:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|
2017-06-29 18:03:33 +02:00
|
|
|
|
|
|
|
<LinearLayout
|
2017-07-03 18:10:00 +02:00
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_weight="1"
|
2017-06-29 18:03:33 +02:00
|
|
|
android:layout_height="wrap_content"
|
2017-06-30 18:01:01 +02:00
|
|
|
android:orientation="horizontal">
|
2017-06-29 18:03:33 +02:00
|
|
|
|
2017-06-30 18:01:01 +02:00
|
|
|
<ImageView
|
2017-07-10 15:22:45 +02:00
|
|
|
android:layout_marginTop="2dp"
|
2017-07-01 13:55:45 +02:00
|
|
|
android:id="@+id/end_time_image"
|
2017-06-30 18:01:01 +02:00
|
|
|
android:layout_width="16dp"
|
|
|
|
android:layout_height="16dp"
|
2017-07-01 13:55:45 +02:00
|
|
|
tools:src="@drawable/ic_action_time_end_16"
|
2017-06-30 18:01:01 +02:00
|
|
|
android:layout_marginRight="12dp"/>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="wrap_content"
|
2017-06-29 18:03:33 +02:00
|
|
|
android:layout_height="wrap_content"
|
2017-06-30 18:01:01 +02:00
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<net.osmand.plus.widgets.TextViewEx
|
|
|
|
android:id="@+id/end_time_value"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="@null"
|
|
|
|
tools:text="15:34:58"
|
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
|
|
osmand:typeface="@string/font_roboto_medium"
|
2017-07-06 10:20:50 +02:00
|
|
|
android:textSize="@dimen/default_split_segments_data"/>
|
2017-06-30 18:01:01 +02:00
|
|
|
|
|
|
|
<TextView
|
2017-07-01 13:55:45 +02:00
|
|
|
android:id="@+id/end_date_value"
|
2017-06-30 18:01:01 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="@null"
|
2017-07-10 15:22:45 +02:00
|
|
|
android:layout_marginTop="1dp"
|
2017-07-03 18:10:00 +02:00
|
|
|
tools:text="Aug 8, 2016"
|
2017-06-30 18:01:01 +02:00
|
|
|
android:textColor="?android:attr/textColorSecondary"
|
2017-07-06 10:20:50 +02:00
|
|
|
android:textSize="@dimen/default_split_segments_sub"/>
|
2017-06-30 18:01:01 +02:00
|
|
|
|
|
|
|
</LinearLayout>
|
2017-06-29 18:03:33 +02:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
2017-06-30 18:01:01 +02:00
|
|
|
<View
|
2017-07-04 12:23:13 +02:00
|
|
|
android:id="@+id/elevation_divider"
|
2017-06-30 18:01:01 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="1dp"
|
|
|
|
android:layout_marginLeft="28dp"
|
|
|
|
android:background="?attr/dashboard_divider"/>
|
2017-06-30 09:42:34 +02:00
|
|
|
|
|
|
|
<LinearLayout
|
2017-07-04 12:23:13 +02:00
|
|
|
android:id="@+id/elevation_layout"
|
2017-06-30 18:01:01 +02:00
|
|
|
android:layout_width="match_parent"
|
2017-06-30 09:42:34 +02:00
|
|
|
android:layout_height="wrap_content"
|
2017-06-30 18:01:01 +02:00
|
|
|
android:orientation="horizontal"
|
2017-07-10 15:22:45 +02:00
|
|
|
android:layout_marginTop="7dp"
|
2017-07-07 09:49:36 +02:00
|
|
|
android:layout_marginBottom="8dp">
|
2017-06-30 09:42:34 +02:00
|
|
|
|
|
|
|
<LinearLayout
|
2017-06-30 18:01:01 +02:00
|
|
|
android:layout_marginRight="3dp"
|
2017-07-03 18:10:00 +02:00
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_weight="1"
|
2017-06-30 09:42:34 +02:00
|
|
|
android:layout_height="wrap_content"
|
2017-06-30 18:01:01 +02:00
|
|
|
android:orientation="horizontal">
|
2017-06-30 09:42:34 +02:00
|
|
|
|
2017-06-30 18:01:01 +02:00
|
|
|
<ImageView
|
2017-07-10 15:22:45 +02:00
|
|
|
android:layout_marginTop="2dp"
|
2017-07-01 13:55:45 +02:00
|
|
|
android:id="@+id/average_altitude_image"
|
2017-06-30 18:01:01 +02:00
|
|
|
android:layout_width="16dp"
|
|
|
|
android:layout_height="16dp"
|
2017-07-01 13:55:45 +02:00
|
|
|
tools:src="@drawable/ic_action_altitude_average_16"
|
2017-06-30 18:01:01 +02:00
|
|
|
android:layout_marginRight="12dp"/>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="wrap_content"
|
2017-06-30 09:42:34 +02:00
|
|
|
android:layout_height="wrap_content"
|
2017-06-30 18:01:01 +02:00
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<net.osmand.plus.widgets.TextViewEx
|
|
|
|
android:id="@+id/average_altitude_value"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="@null"
|
|
|
|
tools:text="25 000 m"
|
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
|
|
osmand:typeface="@string/font_roboto_medium"
|
2017-07-06 10:20:50 +02:00
|
|
|
android:textSize="@dimen/default_split_segments_data"/>
|
2017-06-30 18:01:01 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="@null"
|
2017-07-10 15:22:45 +02:00
|
|
|
android:layout_marginTop="1dp"
|
2017-07-03 18:10:00 +02:00
|
|
|
android:text="@string/average"
|
2017-06-30 18:01:01 +02:00
|
|
|
android:textColor="?android:attr/textColorSecondary"
|
2017-07-06 10:20:50 +02:00
|
|
|
android:textSize="@dimen/default_split_segments_sub"/>
|
2017-06-30 18:01:01 +02:00
|
|
|
|
|
|
|
</LinearLayout>
|
2017-06-30 09:42:34 +02:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
2017-06-30 18:01:01 +02:00
|
|
|
android:layout_marginRight="3dp"
|
2017-07-03 18:10:00 +02:00
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_weight="1"
|
2017-06-30 09:42:34 +02:00
|
|
|
android:layout_height="wrap_content"
|
2017-06-30 18:01:01 +02:00
|
|
|
android:orientation="horizontal">
|
2017-06-30 09:42:34 +02:00
|
|
|
|
2017-06-30 18:01:01 +02:00
|
|
|
<ImageView
|
2017-07-10 15:22:45 +02:00
|
|
|
android:layout_marginTop="2dp"
|
2017-07-01 13:55:45 +02:00
|
|
|
android:id="@+id/altitude_range_image"
|
2017-06-30 18:01:01 +02:00
|
|
|
android:layout_width="16dp"
|
|
|
|
android:layout_height="16dp"
|
2017-07-01 13:55:45 +02:00
|
|
|
tools:src="@drawable/ic_action_altitude_range_16"
|
2017-06-30 18:01:01 +02:00
|
|
|
android:layout_marginRight="12dp"/>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="wrap_content"
|
2017-06-30 09:42:34 +02:00
|
|
|
android:layout_height="wrap_content"
|
2017-06-30 18:01:01 +02:00
|
|
|
android:orientation="vertical">
|
|
|
|
|
2017-07-03 18:10:00 +02:00
|
|
|
<net.osmand.plus.widgets.TextViewEx
|
|
|
|
android:id="@+id/min_max_altitude_value"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="@null"
|
|
|
|
tools:text="1/2335 m"
|
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
|
|
osmand:typeface="@string/font_roboto_medium"
|
2017-07-06 10:20:50 +02:00
|
|
|
android:textSize="@dimen/default_split_segments_data"/>
|
2017-07-03 18:10:00 +02:00
|
|
|
|
2017-06-30 18:01:01 +02:00
|
|
|
<net.osmand.plus.widgets.TextViewEx
|
|
|
|
android:id="@+id/min_altitude_value"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="@null"
|
|
|
|
tools:text="1 m"
|
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
|
|
osmand:typeface="@string/font_roboto_medium"
|
2017-07-06 10:20:50 +02:00
|
|
|
android:textSize="@dimen/default_split_segments_data"/>
|
2017-06-30 18:01:01 +02:00
|
|
|
|
|
|
|
<net.osmand.plus.widgets.TextViewEx
|
|
|
|
android:id="@+id/max_altitude_value"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="@null"
|
|
|
|
tools:text="2335 m"
|
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
|
|
osmand:typeface="@string/font_roboto_medium"
|
2017-07-06 10:20:50 +02:00
|
|
|
android:textSize="@dimen/default_split_segments_data"/>
|
2017-06-30 18:01:01 +02:00
|
|
|
|
|
|
|
<TextView
|
2017-07-03 18:10:00 +02:00
|
|
|
android:id="@+id/textView4"
|
2017-06-30 18:01:01 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2017-07-10 15:22:45 +02:00
|
|
|
android:layout_marginTop="1dp"
|
2017-07-03 18:10:00 +02:00
|
|
|
android:background="@null"
|
2017-07-10 15:22:45 +02:00
|
|
|
android:text="@string/min_max"
|
2017-06-30 18:01:01 +02:00
|
|
|
android:textColor="?android:attr/textColorSecondary"
|
2017-07-06 10:20:50 +02:00
|
|
|
android:textSize="@dimen/default_split_segments_sub" />
|
2017-06-30 18:01:01 +02:00
|
|
|
|
|
|
|
</LinearLayout>
|
2017-06-30 09:42:34 +02:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
2017-07-03 18:10:00 +02:00
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_weight="1"
|
2017-06-30 09:42:34 +02:00
|
|
|
android:layout_height="wrap_content"
|
2017-06-30 18:01:01 +02:00
|
|
|
android:orientation="horizontal">
|
2017-06-30 09:42:34 +02:00
|
|
|
|
2017-06-30 18:01:01 +02:00
|
|
|
<ImageView
|
2017-07-10 15:22:45 +02:00
|
|
|
android:layout_marginTop="2dp"
|
2017-07-01 13:55:45 +02:00
|
|
|
android:id="@+id/ascent_descent_image"
|
2017-06-30 18:01:01 +02:00
|
|
|
android:layout_width="16dp"
|
|
|
|
android:layout_height="16dp"
|
2017-07-01 13:55:45 +02:00
|
|
|
tools:src="@drawable/ic_action_altitude_descent_ascent_16"
|
2017-06-30 18:01:01 +02:00
|
|
|
android:layout_marginRight="12dp"/>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="wrap_content"
|
2017-06-30 09:42:34 +02:00
|
|
|
android:layout_height="wrap_content"
|
2017-06-30 18:01:01 +02:00
|
|
|
android:orientation="vertical">
|
|
|
|
|
2017-07-03 18:10:00 +02:00
|
|
|
<net.osmand.plus.widgets.TextViewEx
|
|
|
|
android:id="@+id/ascent_descent_value"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="@null"
|
|
|
|
tools:text="6280/6285 m"
|
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
|
|
osmand:typeface="@string/font_roboto_medium"
|
2017-07-06 10:20:50 +02:00
|
|
|
android:textSize="@dimen/default_split_segments_data"/>
|
2017-07-03 18:10:00 +02:00
|
|
|
|
2017-06-30 18:01:01 +02:00
|
|
|
<net.osmand.plus.widgets.TextViewEx
|
|
|
|
android:id="@+id/ascent_value"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="@null"
|
|
|
|
tools:text="6280 m"
|
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
|
|
osmand:typeface="@string/font_roboto_medium"
|
2017-07-06 10:20:50 +02:00
|
|
|
android:textSize="@dimen/default_split_segments_data"/>
|
2017-06-30 18:01:01 +02:00
|
|
|
|
|
|
|
<net.osmand.plus.widgets.TextViewEx
|
|
|
|
android:id="@+id/descent_value"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="@null"
|
|
|
|
tools:text="6285 m"
|
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
|
|
osmand:typeface="@string/font_roboto_medium"
|
2017-07-06 10:20:50 +02:00
|
|
|
android:textSize="@dimen/default_split_segments_data"/>
|
2017-06-30 18:01:01 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="@null"
|
2017-07-10 15:22:45 +02:00
|
|
|
android:layout_marginTop="1dp"
|
2017-07-03 18:10:00 +02:00
|
|
|
android:text="@string/ascent_descent"
|
2017-06-30 18:01:01 +02:00
|
|
|
android:textColor="?android:attr/textColorSecondary"
|
2017-07-06 10:20:50 +02:00
|
|
|
android:textSize="@dimen/default_split_segments_sub"/>
|
2017-06-30 18:01:01 +02:00
|
|
|
|
|
|
|
</LinearLayout>
|
2017-06-30 09:42:34 +02:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
2017-06-30 18:01:01 +02:00
|
|
|
<View
|
2017-07-04 12:23:13 +02:00
|
|
|
android:id="@+id/speed_divider"
|
2017-06-30 18:01:01 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="1dp"
|
|
|
|
android:layout_marginLeft="28dp"
|
|
|
|
android:background="?attr/dashboard_divider"/>
|
2017-06-30 09:42:34 +02:00
|
|
|
|
|
|
|
<LinearLayout
|
2017-07-04 12:23:13 +02:00
|
|
|
android:id="@+id/speed_layout"
|
2017-06-30 18:01:01 +02:00
|
|
|
android:layout_width="match_parent"
|
2017-06-30 09:42:34 +02:00
|
|
|
android:layout_height="wrap_content"
|
2017-06-30 18:01:01 +02:00
|
|
|
android:orientation="horizontal"
|
2017-07-10 15:22:45 +02:00
|
|
|
android:layout_marginTop="7dp"
|
2017-07-07 09:49:36 +02:00
|
|
|
android:layout_marginBottom="8dp">
|
2017-06-30 09:42:34 +02:00
|
|
|
|
|
|
|
<LinearLayout
|
2017-06-30 18:01:01 +02:00
|
|
|
android:layout_marginRight="3dp"
|
2017-07-03 18:10:00 +02:00
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_weight="1"
|
2017-06-30 09:42:34 +02:00
|
|
|
android:layout_height="wrap_content"
|
2017-06-30 18:01:01 +02:00
|
|
|
android:orientation="horizontal">
|
2017-06-30 09:42:34 +02:00
|
|
|
|
2017-06-30 18:01:01 +02:00
|
|
|
<ImageView
|
2017-07-10 15:22:45 +02:00
|
|
|
android:layout_marginTop="2dp"
|
2017-07-01 13:55:45 +02:00
|
|
|
android:id="@+id/moving_time_image"
|
2017-06-30 18:01:01 +02:00
|
|
|
android:layout_width="16dp"
|
|
|
|
android:layout_height="16dp"
|
2017-07-01 13:55:45 +02:00
|
|
|
tools:src="@drawable/ic_action_time_moving_16"
|
2017-06-30 18:01:01 +02:00
|
|
|
android:layout_marginRight="12dp"/>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="wrap_content"
|
2017-06-30 09:42:34 +02:00
|
|
|
android:layout_height="wrap_content"
|
2017-06-30 18:01:01 +02:00
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<net.osmand.plus.widgets.TextViewEx
|
|
|
|
android:id="@+id/moving_time_value"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="@null"
|
|
|
|
tools:text="3:20:12"
|
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
|
|
osmand:typeface="@string/font_roboto_medium"
|
2017-07-06 10:20:50 +02:00
|
|
|
android:textSize="@dimen/default_split_segments_data"/>
|
2017-06-30 18:01:01 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="@null"
|
2017-07-10 15:22:45 +02:00
|
|
|
android:layout_marginTop="1dp"
|
2017-07-03 18:10:00 +02:00
|
|
|
android:text="@string/moving_time"
|
2017-06-30 18:01:01 +02:00
|
|
|
android:textColor="?android:attr/textColorSecondary"
|
2017-07-06 10:20:50 +02:00
|
|
|
android:textSize="@dimen/default_split_segments_sub"/>
|
2017-06-30 18:01:01 +02:00
|
|
|
|
|
|
|
</LinearLayout>
|
2017-06-30 09:42:34 +02:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
2017-06-30 18:01:01 +02:00
|
|
|
android:layout_marginRight="3dp"
|
2017-07-03 18:10:00 +02:00
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_weight="1"
|
2017-06-30 09:42:34 +02:00
|
|
|
android:layout_height="wrap_content"
|
2017-06-30 18:01:01 +02:00
|
|
|
android:orientation="horizontal">
|
2017-06-30 09:42:34 +02:00
|
|
|
|
2017-06-30 18:01:01 +02:00
|
|
|
<ImageView
|
2017-07-10 15:22:45 +02:00
|
|
|
android:layout_marginTop="2dp"
|
2017-07-01 13:55:45 +02:00
|
|
|
android:id="@+id/average_speed_image"
|
2017-06-30 18:01:01 +02:00
|
|
|
android:layout_width="16dp"
|
|
|
|
android:layout_height="16dp"
|
2017-07-01 13:55:45 +02:00
|
|
|
tools:src="@drawable/ic_action_speed_16"
|
2017-06-30 18:01:01 +02:00
|
|
|
android:layout_marginRight="12dp"/>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="wrap_content"
|
2017-06-30 09:42:34 +02:00
|
|
|
android:layout_height="wrap_content"
|
2017-06-30 18:01:01 +02:00
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<net.osmand.plus.widgets.TextViewEx
|
|
|
|
android:id="@+id/average_speed_value"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="@null"
|
|
|
|
tools:text="11.1 km/h"
|
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
|
|
osmand:typeface="@string/font_roboto_medium"
|
2017-07-06 10:20:50 +02:00
|
|
|
android:textSize="@dimen/default_split_segments_data"/>
|
2017-06-30 18:01:01 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="@null"
|
2017-07-10 15:22:45 +02:00
|
|
|
android:layout_marginTop="1dp"
|
2017-07-03 18:10:00 +02:00
|
|
|
android:text="@string/average"
|
2017-06-30 18:01:01 +02:00
|
|
|
android:textColor="?android:attr/textColorSecondary"
|
2017-07-06 10:20:50 +02:00
|
|
|
android:textSize="@dimen/default_split_segments_sub"/>
|
2017-06-30 18:01:01 +02:00
|
|
|
|
|
|
|
</LinearLayout>
|
2017-06-30 09:42:34 +02:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
2017-07-03 18:10:00 +02:00
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_weight="1"
|
2017-06-30 09:42:34 +02:00
|
|
|
android:layout_height="wrap_content"
|
2017-06-30 18:01:01 +02:00
|
|
|
android:orientation="horizontal">
|
2017-06-30 09:42:34 +02:00
|
|
|
|
2017-06-30 18:01:01 +02:00
|
|
|
<ImageView
|
2017-07-10 15:22:45 +02:00
|
|
|
android:layout_marginTop="2dp"
|
2017-07-01 13:55:45 +02:00
|
|
|
android:id="@+id/max_speed_image"
|
2017-06-30 18:01:01 +02:00
|
|
|
android:layout_width="16dp"
|
|
|
|
android:layout_height="16dp"
|
2017-07-01 13:55:45 +02:00
|
|
|
tools:src="@drawable/ic_action_max_speed_16"
|
2017-06-30 18:01:01 +02:00
|
|
|
android:layout_marginRight="12dp"/>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="wrap_content"
|
2017-06-30 09:42:34 +02:00
|
|
|
android:layout_height="wrap_content"
|
2017-06-30 18:01:01 +02:00
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<net.osmand.plus.widgets.TextViewEx
|
|
|
|
android:id="@+id/max_min_speed_value"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="@null"
|
2017-07-03 18:10:00 +02:00
|
|
|
tools:text="93/2 kmg/h"
|
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
|
|
osmand:typeface="@string/font_roboto_medium"
|
2017-07-06 10:20:50 +02:00
|
|
|
android:textSize="@dimen/default_split_segments_data"/>
|
2017-07-03 18:10:00 +02:00
|
|
|
|
|
|
|
<net.osmand.plus.widgets.TextViewEx
|
|
|
|
android:id="@+id/max_speed_value"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="@null"
|
2017-06-30 18:01:01 +02:00
|
|
|
tools:text="93 kmg/h"
|
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
|
|
osmand:typeface="@string/font_roboto_medium"
|
2017-07-06 10:20:50 +02:00
|
|
|
android:textSize="@dimen/default_split_segments_data"/>
|
2017-06-30 18:01:01 +02:00
|
|
|
|
2017-07-03 18:10:00 +02:00
|
|
|
<net.osmand.plus.widgets.TextViewEx
|
|
|
|
android:id="@+id/min_speed_value"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="@null"
|
|
|
|
tools:text="2 kmg/h"
|
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
|
|
osmand:typeface="@string/font_roboto_medium"
|
2017-07-06 10:20:50 +02:00
|
|
|
android:textSize="@dimen/default_split_segments_data"/>
|
2017-07-03 18:10:00 +02:00
|
|
|
|
2017-06-30 18:01:01 +02:00
|
|
|
<TextView
|
2017-07-03 18:10:00 +02:00
|
|
|
android:id="@+id/max_min_speed_text"
|
2017-06-30 18:01:01 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="@null"
|
2017-07-10 15:22:45 +02:00
|
|
|
android:layout_marginTop="1dp"
|
2017-07-03 18:10:00 +02:00
|
|
|
android:text="@string/max_min"
|
2017-06-30 18:01:01 +02:00
|
|
|
android:textColor="?android:attr/textColorSecondary"
|
2017-07-06 10:20:50 +02:00
|
|
|
android:textSize="@dimen/default_split_segments_sub"/>
|
2017-06-30 18:01:01 +02:00
|
|
|
|
|
|
|
</LinearLayout>
|
2017-06-30 09:42:34 +02:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
2017-06-29 18:03:33 +02:00
|
|
|
</LinearLayout>
|