<?xml version="1.0" encoding="utf-8"?>
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="match_parent"
|
android:layout_height="40dp"
|
android:background="@color/train_bg"
|
>
|
<TextView
|
android:layout_width="0dp"
|
android:layout_weight="1"
|
android:layout_height="match_parent"
|
android:textColor="@android:color/white"
|
android:gravity="center"
|
android:id="@+id/tv_item"
|
android:text="扣分项目"/>
|
<View android:layout_height="match_parent"
|
android:layout_width="1px"
|
android:background="#66CCFF"
|
|
/>
|
<TextView
|
android:layout_width="0dp"
|
android:layout_weight="1"
|
android:layout_height="match_parent"
|
android:gravity="center"
|
android:textColor="@android:color/white"
|
android:id="@+id/tv_score"
|
android:text="扣分分数"/>
|
<View android:layout_height="match_parent"
|
android:layout_width="1px"
|
android:background="#66CCFF"
|
|
/>
|
<TextView
|
android:layout_width="0dp"
|
android:layout_weight="1"
|
android:textColor="@android:color/white"
|
android:layout_height="match_parent"
|
android:gravity="center"
|
android:id="@+id/tv_reason"
|
android:text="扣分原因"/>
|
</LinearLayout>
|