<?xml version="1.0" encoding="utf-8"?>
|
<androidx.core.widget.NestedScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="match_parent"
|
android:background="#F3F4F5"
|
android:layout_height="match_parent">
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:layout_marginStart="10dp"
|
android:layout_marginTop="14dp"
|
android:layout_marginEnd="10dp"
|
android:layout_marginBottom="14dp"
|
android:background="@drawable/bg_write_cricle_4"
|
android:orientation="vertical">
|
|
<androidx.recyclerview.widget.RecyclerView
|
android:id="@+id/recycler_view_all"
|
android:layout_width="match_parent"
|
android:layout_height="656.5dp" />
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="50dp"
|
android:gravity="center_vertical"
|
android:orientation="horizontal"
|
android:paddingStart="12dp">
|
|
<TextView
|
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_have"
|
android:layout_width="41dp"
|
android:layout_height="24dp"
|
android:background="@drawable/city_color_btn"
|
android:gravity="center"
|
android:text="有"
|
android:textColor="@color/color_1d99ea"
|
android:textSize="12sp" />
|
|
<TextView
|
android:id="@+id/tv_none"
|
android:layout_width="41dp"
|
android:layout_height="24dp"
|
android:layout_marginStart="20dp"
|
android:layout_marginEnd="15dp"
|
android:background="@drawable/car_get_start_4"
|
android:gravity="center"
|
android:text="无"
|
android:textColor="#ffffffff"
|
android:textSize="12sp" />
|
|
|
</LinearLayout>
|
|
<include layout="@layout/include_line" />
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="50dp"
|
android:gravity="center_vertical"
|
android:paddingStart="12dp"
|
android:text="车辆加装配置"
|
android:textColor="#ff000000"
|
android:textSize="14sp"
|
android:textStyle="bold" />
|
|
<androidx.recyclerview.widget.RecyclerView
|
android:id="@+id/recycler_view_add"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content" />
|
|
</LinearLayout>
|
|
</androidx.core.widget.NestedScrollView>
|