122 lines
No EOL
4.5 KiB
XML
122 lines
No EOL
4.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center">
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:background="?attr/chart_marker_background">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/text_alt_container"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:paddingTop="2dp"
|
|
android:paddingBottom="2dp"
|
|
android:paddingLeft="6dp"
|
|
android:paddingRight="6dp">
|
|
|
|
<TextView
|
|
android:id="@+id/text_alt_value"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="100 "
|
|
android:textSize="@dimen/default_desc_text_size"
|
|
android:textColor="@color/gpx_chart_blue"
|
|
android:textStyle="bold"
|
|
android:ellipsize="end"
|
|
android:singleLine="true"/>
|
|
|
|
<TextView
|
|
android:id="@+id/text_alt_units"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="m"
|
|
android:textSize="@dimen/default_sub_text_size"
|
|
android:textColor="?android:attr/textColorSecondary"
|
|
android:ellipsize="end"
|
|
android:singleLine="true"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<View
|
|
android:id="@+id/divider"
|
|
android:layout_width="1dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginTop="1dp"
|
|
android:layout_marginBottom="1dp"
|
|
android:background="?attr/dashboard_divider"/>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/text_spd_container"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:paddingTop="2dp"
|
|
android:paddingBottom="2dp"
|
|
android:paddingLeft="6dp"
|
|
android:paddingRight="6dp">
|
|
|
|
<TextView
|
|
android:id="@+id/text_spd_value"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="100 "
|
|
android:textSize="@dimen/default_desc_text_size"
|
|
android:textColor="@color/gpx_chart_orange"
|
|
android:textStyle="bold"
|
|
android:ellipsize="end"
|
|
android:singleLine="true"/>
|
|
|
|
<TextView
|
|
android:id="@+id/text_spd_units"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="km/h"
|
|
android:textSize="@dimen/default_sub_text_size"
|
|
android:textColor="?android:attr/textColorSecondary"
|
|
android:ellipsize="end"
|
|
android:singleLine="true"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/text_slp_container"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:paddingTop="2dp"
|
|
android:paddingBottom="2dp"
|
|
android:paddingLeft="6dp"
|
|
android:paddingRight="6dp">
|
|
|
|
<TextView
|
|
android:id="@+id/text_slp_value"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="100 "
|
|
android:textSize="@dimen/default_desc_text_size"
|
|
android:textColor="@color/gpx_chart_green"
|
|
android:textStyle="bold"
|
|
android:ellipsize="end"
|
|
android:singleLine="true"/>
|
|
|
|
<TextView
|
|
android:id="@+id/text_slp_units"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="%"
|
|
android:textSize="@dimen/default_sub_text_size"
|
|
android:textColor="?android:attr/textColorSecondary"
|
|
android:ellipsize="end"
|
|
android:singleLine="true"/>
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
</RelativeLayout> |