<?xml version="1.0" encoding="utf-8"?>
|
<LinearLayout
|
android:orientation="vertical"
|
android:background="@color/white"
|
xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent"
|
android:layout_height="match_parent">
|
|
<EditText
|
android:id="@+id/et_content"
|
android:layout_width="match_parent"
|
android:layout_marginTop="6dp"
|
android:layout_marginStart="12dp"
|
android:layout_marginEnd="12dp"
|
android:hint="手机号搜索"
|
android:drawableStart="@mipmap/mer_search"
|
android:paddingStart="10dp"
|
android:drawablePadding="5dp"
|
android:background="@drawable/bg_edit_top"
|
android:textColorHint="#99040f28"
|
android:textSize="14sp"
|
android:layout_height="40dp"/>
|
|
<androidx.recyclerview.widget.RecyclerView
|
android:id="@+id/recycler_view"
|
android:paddingBottom="20dp"
|
android:clipToPadding="false"
|
android:layout_width="match_parent"
|
android:layout_height="0dp"
|
android:layout_weight="1"/>
|
|
<TextView
|
android:id="@+id/tv_add_card"
|
android:layout_width="match_parent"
|
android:layout_height="40dp"
|
android:layout_marginStart="14dp"
|
android:layout_marginEnd="14dp"
|
android:layout_marginBottom="14dp"
|
android:background="@drawable/bg_login"
|
android:gravity="center"
|
android:text="确认改派给该司机"
|
android:textColor="#ffffffff"
|
android:textSize="14sp" />
|
</LinearLayout>
|