<?xml version="1.0" encoding="utf-8"?>
|
<RelativeLayout
|
xmlns:android="http://schemas.android.com/apk/res/android" 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"
|
/>
|
|
<safeluck.drive.evaluation.customview.ArrowView
|
android:layout_width="80dp"
|
android:layout_height="80dp"
|
android:layout_toRightOf="@+id/hv"
|
android:id="@+id/av1"
|
android:layout_marginLeft="-15dp"
|
/>
|
<safeluck.drive.evaluation.customview.ArrowView
|
android:layout_width="80dp"
|
android:layout_height="80dp"
|
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"
|
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"
|
|
/>
|
</RelativeLayout>
|