<?xml version="1.0" encoding="utf-8"?>
|
<LinearLayout
|
android:orientation="vertical"
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content">
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="50dp"
|
android:gravity="center_vertical"
|
android:orientation="horizontal"
|
android:paddingStart="12dp">
|
|
<TextView
|
android:id="@+id/tv_name"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="是否有抵押"
|
android:textColor="#ff000000"
|
android:textSize="14sp" />
|
|
<include layout="@layout/include_weight_width" />
|
|
<TextView
|
android:id="@+id/tv_value_car_info"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:textStyle="bold"
|
android:paddingEnd="12dp"
|
android:text="长安福特"
|
android:textColor="#ff000000"
|
android:textSize="14sp"
|
/>
|
|
|
</LinearLayout>
|
|
<include layout="@layout/include_line"/>
|
|
</LinearLayout>
|