2019-01-18 13:51:39 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2019-02-05 16:26:42 +01:00
|
|
|
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-01-18 13:51:39 +01:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:background="?attr/card_bg_color">
|
|
|
|
|
2019-02-05 16:26:42 +01:00
|
|
|
<ScrollView
|
|
|
|
android:id="@+id/scroll_view"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
2019-01-18 13:51:39 +01:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/image_container"
|
|
|
|
android:layout_width="match_parent"
|
2019-02-01 16:13:21 +01:00
|
|
|
android:layout_height="102dp"
|
2019-01-18 13:51:39 +01:00
|
|
|
app:layout_scrollFlags="scroll">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/back_button"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="start"
|
|
|
|
android:background="?attr/selectableItemBackgroundBorderless"
|
|
|
|
android:contentDescription="@string/shared_string_back"
|
|
|
|
android:padding="@dimen/content_padding_standard"
|
|
|
|
tools:src="@drawable/ic_arrow_back"
|
|
|
|
tools:tint="@color/icon_light" />
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/user_icon"
|
2019-02-01 16:13:21 +01:00
|
|
|
android:layout_width="@dimen/timeline_user_icon_size"
|
|
|
|
android:layout_height="@dimen/timeline_user_icon_size"
|
2019-01-18 13:51:39 +01:00
|
|
|
android:layout_gravity="center_horizontal"
|
2019-02-01 16:13:21 +01:00
|
|
|
android:layout_marginTop="@dimen/content_padding_half"
|
2019-01-18 13:51:39 +01:00
|
|
|
tools:src="@drawable/img_user_picture" />
|
|
|
|
|
|
|
|
<net.osmand.telegram.ui.views.TextViewEx
|
|
|
|
android:id="@+id/title"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="bottom|center_horizontal"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:gravity="center"
|
|
|
|
android:maxLines="1"
|
|
|
|
android:text="@string/start_location_sharing"
|
|
|
|
android:textColor="?android:textColorPrimary"
|
|
|
|
android:textSize="@dimen/title_text_size"
|
|
|
|
app:typeface="@string/font_roboto_mono_bold" />
|
|
|
|
|
|
|
|
</FrameLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/interval_row"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingLeft="@dimen/content_padding_standard"
|
|
|
|
android:paddingRight="@dimen/content_padding_standard">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
<net.osmand.telegram.ui.views.TextViewEx
|
|
|
|
android:id="@+id/start_descr"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginEnd="@dimen/content_padding_standard"
|
|
|
|
android:layout_marginRight="@dimen/content_padding_standard"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:maxLines="1"
|
|
|
|
android:text="@string/start_date"
|
2019-02-05 16:26:42 +01:00
|
|
|
android:textColor="?android:attr/textColorSecondary"
|
2019-01-18 13:51:39 +01:00
|
|
|
android:textSize="@dimen/list_item_description_text_size"
|
|
|
|
app:firstBaselineToTopHeight="@dimen/list_item_baseline_to_top_height"
|
|
|
|
app:typeface="@string/font_roboto_regular" />
|
|
|
|
|
|
|
|
<net.osmand.telegram.ui.views.TextViewEx
|
|
|
|
android:id="@+id/end_descr"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:layout_marginStart="@dimen/content_padding_standard"
|
2019-02-01 16:13:21 +01:00
|
|
|
android:layout_marginLeft="@dimen/content_padding_standard"
|
2019-01-18 13:51:39 +01:00
|
|
|
android:layout_weight="1"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:maxLines="1"
|
|
|
|
android:text="@string/end_date"
|
2019-02-05 16:26:42 +01:00
|
|
|
android:textColor="?android:attr/textColorSecondary"
|
2019-01-18 13:51:39 +01:00
|
|
|
android:textSize="@dimen/list_item_description_text_size"
|
|
|
|
app:firstBaselineToTopHeight="@dimen/list_item_baseline_to_top_height"
|
|
|
|
app:typeface="@string/font_roboto_regular" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
2019-02-01 16:13:21 +01:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingTop="@dimen/card_divider_bottom_margin"
|
|
|
|
android:paddingBottom="@dimen/content_padding_half"
|
2019-01-18 13:51:39 +01:00
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<net.osmand.telegram.ui.views.TextViewEx
|
|
|
|
android:id="@+id/date_start_btn"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="@dimen/dialog_button_height"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:layout_marginEnd="@dimen/content_padding_half"
|
|
|
|
android:layout_marginRight="@dimen/content_padding_half"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:background="@drawable/btn_round"
|
|
|
|
android:ellipsize="end"
|
2019-02-01 16:13:21 +01:00
|
|
|
android:gravity="center_vertical"
|
2019-01-18 13:51:39 +01:00
|
|
|
android:maxLines="1"
|
|
|
|
android:paddingLeft="@dimen/image_button_padding"
|
|
|
|
android:paddingRight="@dimen/image_button_padding"
|
|
|
|
android:textSize="@dimen/text_button_text_size"
|
|
|
|
app:typeface="@string/font_roboto_medium"
|
|
|
|
tools:textColor="?attr/ctrl_active_color"
|
|
|
|
tools:visibility="visible" />
|
|
|
|
|
|
|
|
<net.osmand.telegram.ui.views.TextViewEx
|
|
|
|
android:id="@+id/time_start_btn"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="@dimen/dialog_button_height"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:background="@drawable/btn_round"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:gravity="center"
|
|
|
|
android:maxLines="1"
|
|
|
|
android:paddingLeft="@dimen/image_button_padding"
|
|
|
|
android:paddingRight="@dimen/image_button_padding"
|
|
|
|
android:textSize="@dimen/text_button_text_size"
|
|
|
|
app:typeface="@string/font_roboto_medium"
|
|
|
|
tools:textColor="?attr/ctrl_active_color"
|
|
|
|
tools:visibility="visible" />
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:layout_width="16dp"
|
|
|
|
android:layout_height="1dp"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:layout_marginLeft="@dimen/content_padding_half"
|
|
|
|
android:layout_marginRight="@dimen/content_padding_half"
|
|
|
|
android:background="@color/card_divider_light" />
|
|
|
|
|
|
|
|
<net.osmand.telegram.ui.views.TextViewEx
|
|
|
|
android:id="@+id/date_end_btn"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="@dimen/dialog_button_height"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:layout_marginEnd="@dimen/content_padding_half"
|
|
|
|
android:layout_marginRight="@dimen/content_padding_half"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:background="@drawable/btn_round"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:gravity="center"
|
|
|
|
android:maxLines="1"
|
|
|
|
android:paddingLeft="@dimen/image_button_padding"
|
|
|
|
android:paddingRight="@dimen/image_button_padding"
|
|
|
|
android:textSize="@dimen/text_button_text_size"
|
|
|
|
app:typeface="@string/font_roboto_medium"
|
|
|
|
tools:textColor="?attr/ctrl_active_color"
|
|
|
|
tools:visibility="visible" />
|
|
|
|
|
|
|
|
<net.osmand.telegram.ui.views.TextViewEx
|
|
|
|
android:id="@+id/time_end_btn"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="@dimen/dialog_button_height"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:background="@drawable/btn_round"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:gravity="center"
|
|
|
|
android:maxLines="1"
|
|
|
|
android:paddingLeft="@dimen/image_button_padding"
|
|
|
|
android:paddingRight="@dimen/image_button_padding"
|
|
|
|
android:textSize="@dimen/text_button_text_size"
|
|
|
|
app:typeface="@string/font_roboto_medium"
|
|
|
|
tools:textColor="?attr/ctrl_active_color"
|
|
|
|
tools:visibility="visible" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
2019-07-15 14:09:29 +02:00
|
|
|
<net.osmand.telegram.ui.views.TextViewEx
|
|
|
|
android:id="@+id/live_btn"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="@dimen/dialog_button_height"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:layout_marginBottom="@dimen/content_padding_half"
|
|
|
|
android:background="@drawable/btn_round"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:gravity="center"
|
|
|
|
android:maxLines="1"
|
|
|
|
android:paddingLeft="@dimen/image_button_padding"
|
|
|
|
android:paddingRight="@dimen/image_button_padding"
|
|
|
|
android:text="@string/shared_string_live"
|
|
|
|
android:textSize="@dimen/text_button_text_size"
|
|
|
|
android:visibility="visible"
|
|
|
|
app:typeface="@string/font_roboto_medium"
|
|
|
|
tools:textColor="?attr/ctrl_active_color" />
|
|
|
|
|
2019-01-18 13:51:39 +01:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/map_container"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="152dp"
|
|
|
|
android:layout_marginLeft="@dimen/content_padding_standard"
|
|
|
|
android:layout_marginRight="@dimen/content_padding_standard">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/gpx_map"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:contentDescription="@string/shared_string_map" />
|
|
|
|
|
|
|
|
</FrameLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/gpx_statistic"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/distance_time_span"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:paddingBottom="11dp"
|
|
|
|
android:paddingTop="13dp">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:paddingLeft="16dp">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/distance_icon"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="5dp"
|
2019-02-01 16:13:21 +01:00
|
|
|
android:src="@drawable/ic_action_sort_by_distance" />
|
2019-01-18 13:51:39 +01:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="18dp"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
2019-02-01 16:13:21 +01:00
|
|
|
<net.osmand.telegram.ui.views.TextViewEx
|
2019-01-18 13:51:39 +01:00
|
|
|
android:id="@+id/distance_desc"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="3dp"
|
2019-02-01 16:13:21 +01:00
|
|
|
android:layout_marginBottom="6dp"
|
2019-01-18 13:51:39 +01:00
|
|
|
android:background="@null"
|
|
|
|
android:text="@string/shared_string_distance"
|
|
|
|
android:textColor="?android:attr/textColorSecondary"
|
2019-02-01 16:13:21 +01:00
|
|
|
android:textSize="@dimen/list_item_description_text_size"
|
|
|
|
app:typeface="@string/font_roboto_regular" />
|
2019-01-18 13:51:39 +01:00
|
|
|
|
|
|
|
<net.osmand.telegram.ui.views.TextViewEx
|
|
|
|
android:id="@+id/distance_text"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="@null"
|
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
2019-02-01 16:13:21 +01:00
|
|
|
android:textSize="@dimen/descr_text_size"
|
|
|
|
app:typeface="@string/font_roboto_mono_bold"
|
|
|
|
tools:text="40 km" />
|
2019-01-18 13:51:39 +01:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:paddingLeft="16dp">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/duration_icon"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="5dp"
|
|
|
|
android:src="@drawable/ic_action_share_location" />
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="18dp"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
2019-02-01 16:13:21 +01:00
|
|
|
<net.osmand.telegram.ui.views.TextViewEx
|
2019-01-18 13:51:39 +01:00
|
|
|
android:id="@+id/duration_desc"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="3dp"
|
2019-02-01 16:13:21 +01:00
|
|
|
android:layout_marginBottom="6dp"
|
2019-01-18 13:51:39 +01:00
|
|
|
android:background="@null"
|
|
|
|
android:text="@string/time_on_the_move"
|
|
|
|
android:textColor="?android:attr/textColorSecondary"
|
2019-02-01 16:13:21 +01:00
|
|
|
android:textSize="@dimen/list_item_description_text_size"
|
|
|
|
app:typeface="@string/font_roboto_regular" />
|
2019-01-18 13:51:39 +01:00
|
|
|
|
|
|
|
<net.osmand.telegram.ui.views.TextViewEx
|
|
|
|
android:id="@+id/duration_text"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="@null"
|
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
2019-02-01 16:13:21 +01:00
|
|
|
android:textSize="@dimen/descr_text_size"
|
|
|
|
app:typeface="@string/font_roboto_mono_bold"
|
|
|
|
tools:text="3:32:44" />
|
2019-01-18 13:51:39 +01:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/list_divider"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:paddingLeft="16dp"
|
|
|
|
android:paddingRight="8dp">
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="1dp"
|
|
|
|
android:background="@color/card_divider_light" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:paddingLeft="8dp"
|
|
|
|
android:paddingRight="16dp">
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="1dp"
|
|
|
|
android:background="@color/card_divider_light" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/start_end_time"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal"
|
2019-02-01 16:13:21 +01:00
|
|
|
android:paddingTop="13dp"
|
|
|
|
android:paddingBottom="11dp">
|
2019-01-18 13:51:39 +01:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:paddingLeft="16dp">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/average_speed_icon"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="5dp"
|
|
|
|
android:src="@drawable/ic_action_speed_average" />
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="18dp"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
2019-02-01 16:13:21 +01:00
|
|
|
<net.osmand.telegram.ui.views.TextViewEx
|
2019-01-18 13:51:39 +01:00
|
|
|
android:id="@+id/average_speed_desc"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="8dp"
|
2019-02-01 16:13:21 +01:00
|
|
|
android:layout_marginBottom="6dp"
|
2019-01-18 13:51:39 +01:00
|
|
|
android:background="@null"
|
|
|
|
android:text="@string/average_speed"
|
|
|
|
android:textColor="?android:attr/textColorSecondary"
|
2019-02-01 16:13:21 +01:00
|
|
|
android:textSize="@dimen/list_item_description_text_size"
|
|
|
|
app:typeface="@string/font_roboto_regular" />
|
2019-01-18 13:51:39 +01:00
|
|
|
|
|
|
|
<net.osmand.telegram.ui.views.TextViewEx
|
|
|
|
android:id="@+id/average_speed_text"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="@null"
|
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
2019-02-01 16:13:21 +01:00
|
|
|
android:textSize="@dimen/descr_text_size"
|
|
|
|
app:typeface="@string/font_roboto_mono_bold"
|
|
|
|
tools:text="15:04:58" />
|
2019-01-18 13:51:39 +01:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:paddingLeft="16dp">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/average_altitude_icon"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="5dp"
|
|
|
|
android:src="@drawable/ic_action_share_location" />
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="18dp"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
2019-02-01 16:13:21 +01:00
|
|
|
<net.osmand.telegram.ui.views.TextViewEx
|
2019-01-18 13:51:39 +01:00
|
|
|
android:id="@+id/average_altitude_desc"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="8dp"
|
2019-02-01 16:13:21 +01:00
|
|
|
android:layout_marginBottom="6dp"
|
2019-01-18 13:51:39 +01:00
|
|
|
android:background="@null"
|
|
|
|
android:text="@string/average_altitude"
|
|
|
|
android:textColor="?android:attr/textColorSecondary"
|
2019-02-01 16:13:21 +01:00
|
|
|
android:textSize="@dimen/list_item_description_text_size"
|
|
|
|
app:typeface="@string/font_roboto_regular" />
|
2019-01-18 13:51:39 +01:00
|
|
|
|
|
|
|
<net.osmand.telegram.ui.views.TextViewEx
|
|
|
|
android:id="@+id/average_altitude_text"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="@null"
|
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
2019-02-01 16:13:21 +01:00
|
|
|
android:textSize="@dimen/descr_text_size"
|
|
|
|
app:typeface="@string/font_roboto_mono_bold"
|
|
|
|
tools:text="20:58:00" />
|
2019-01-18 13:51:39 +01:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/open_in_osmand_btn"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="@dimen/list_item_height_min"
|
2019-02-01 16:13:21 +01:00
|
|
|
android:layout_marginLeft="@dimen/content_padding_standard"
|
|
|
|
android:layout_marginRight="@dimen/content_padding_standard"
|
|
|
|
android:layout_marginBottom="@dimen/image_button_padding"
|
2019-01-18 13:51:39 +01:00
|
|
|
android:background="@drawable/btn_round"
|
|
|
|
android:gravity="center_vertical"
|
2019-02-01 16:13:21 +01:00
|
|
|
android:paddingLeft="@dimen/content_padding_standard"
|
|
|
|
android:paddingRight="@dimen/content_padding_standard">
|
2019-01-18 13:51:39 +01:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/open_in_osmand_icon"
|
|
|
|
android:layout_width="@dimen/list_item_icon_size"
|
|
|
|
android:layout_height="@dimen/list_item_icon_size"
|
|
|
|
android:src="@drawable/ic_logo_osmand_free" />
|
|
|
|
|
|
|
|
<net.osmand.telegram.ui.views.TextViewEx
|
|
|
|
android:id="@+id/open_in_osmand_title"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="@dimen/content_padding_big"
|
|
|
|
android:layout_marginRight="@dimen/content_padding_big"
|
|
|
|
android:text="@string/open_in_osmand"
|
|
|
|
android:textColor="?android:textColorPrimary"
|
|
|
|
android:textSize="@dimen/list_item_title_text_size"
|
2019-02-01 16:13:21 +01:00
|
|
|
app:typeface="@string/font_roboto_regular" />
|
2019-01-18 13:51:39 +01:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/share_gpx_btn"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="@dimen/list_item_height_min"
|
2019-02-01 16:13:21 +01:00
|
|
|
android:layout_marginLeft="@dimen/content_padding_standard"
|
|
|
|
android:layout_marginRight="@dimen/content_padding_standard"
|
2019-01-18 13:51:39 +01:00
|
|
|
android:layout_marginBottom="@dimen/content_padding_standard"
|
|
|
|
android:background="@drawable/btn_round"
|
|
|
|
android:gravity="center_vertical"
|
2019-02-01 16:13:21 +01:00
|
|
|
android:paddingLeft="@dimen/content_padding_standard"
|
|
|
|
android:paddingRight="@dimen/content_padding_standard">
|
2019-01-18 13:51:39 +01:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/share_gpx_icon"
|
|
|
|
android:layout_width="@dimen/list_item_icon_size"
|
|
|
|
android:layout_height="@dimen/list_item_icon_size"
|
2019-02-05 16:26:42 +01:00
|
|
|
tools:src="@drawable/ic_action_share"
|
|
|
|
tools:tint="@color/ctrl_active_light" />
|
2019-01-18 13:51:39 +01:00
|
|
|
|
|
|
|
<net.osmand.telegram.ui.views.TextViewEx
|
|
|
|
android:id="@+id/share_gpx_title"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="@dimen/content_padding_big"
|
|
|
|
android:layout_marginRight="@dimen/content_padding_big"
|
|
|
|
android:text="@string/shared_string_share"
|
|
|
|
android:textColor="?android:textColorPrimary"
|
|
|
|
android:textSize="@dimen/list_item_title_text_size"
|
2019-02-01 16:13:21 +01:00
|
|
|
app:typeface="@string/font_roboto_regular" />
|
2019-01-18 13:51:39 +01:00
|
|
|
|
|
|
|
</LinearLayout>
|
2019-02-05 16:26:42 +01:00
|
|
|
|
2019-01-18 13:51:39 +01:00
|
|
|
</LinearLayout>
|
|
|
|
|
2019-02-05 16:26:42 +01:00
|
|
|
</ScrollView>
|
|
|
|
|
|
|
|
</android.support.design.widget.CoordinatorLayout>
|