<?xml version="1.0" encoding="utf-8"?>
|
<RelativeLayout
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:padding="5dp"
|
android:background="@color/train_item_bg"
|
android:gravity="bottom">
|
|
<safeluck.drive.evaluation.customview.HouseView
|
android:layout_width="80dp"
|
android:layout_height="80dp"
|
android:id="@+id/hv"
|
app:text = "倒车入库"
|
/>
|
|
<safeluck.drive.evaluation.customview.ArrowView
|
android:layout_width="80dp"
|
android:layout_height="80dp"
|
android:layout_toRightOf="@+id/hv"
|
android:id="@+id/av1"
|
app:text="坡道定点"
|
android:layout_marginLeft="-15dp"
|
/>
|
<safeluck.drive.evaluation.customview.ArrowView
|
android:layout_width="80dp"
|
android:layout_height="80dp"
|
app:text="侧方停车"
|
android:layout_marginLeft="-15dp"
|
android:layout_toRightOf="@+id/av1"
|
android:id="@+id/av2"
|
/>
|
<safeluck.drive.evaluation.customview.ArrowView
|
android:layout_width="80dp"
|
android:layout_height="80dp"
|
android:id="@+id/av3"
|
app:text="曲线行驶"
|
android:layout_marginLeft="-15dp"
|
android:layout_toRightOf="@id/av2"
|
/>
|
<safeluck.drive.evaluation.customview.ArrowView
|
android:layout_width="80dp"
|
android:layout_height="80dp"
|
android:layout_marginLeft="-15dp"
|
android:layout_toRightOf="@+id/av3"
|
android:id="@+id/av4"
|
app:text="直角转弯"
|
|
/>
|
</RelativeLayout>
|