54 lines
1.9 KiB
XML
Executable File
54 lines
1.9 KiB
XML
Executable File
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
|
|
|
|
<ImageView
|
|
android:layout_width="35dp"
|
|
android:layout_height="match_parent"
|
|
android:background="@drawable/ic_step_start" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center_vertical"
|
|
android:orientation="vertical"
|
|
android:paddingBottom="10dp"
|
|
android:paddingTop="10dp">
|
|
|
|
<TextView
|
|
android:id="@+id/tv_time"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:drawableLeft="@drawable/ic_clock"
|
|
android:drawablePadding="5dp"
|
|
android:gravity="center_vertical"
|
|
android:includeFontPadding="false"
|
|
tools:text="291234:4313241234:123412:12" />
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="轨迹开始"
|
|
android:textColor="@color/black" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_state_time"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textColor="@color/black"
|
|
android:visibility="gone"
|
|
tools:text="停留时间2小时48分钟" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_address"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="5dp"
|
|
android:textColor="@color/gray_text"
|
|
tools:text="内蒙古呼和浩特市高新经济开发区成吉思汗东街附近(100米)" />
|
|
</LinearLayout>
|
|
</LinearLayout> |