lizhanwei
2020-02-26 0f77bae8c93ca71e63caeaecb1d1e8dbc9a13ecb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?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>