<?xml version="1.0" encoding="utf-8"?>
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
<FrameLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:id="@+id/ll_btn"
|
app:layout_constraintBottom_toBottomOf="parent"
|
android:layout_marginBottom="14dp"
|
style="@style/style_tv_action"
|
>
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_gravity="center"
|
android:textSize="14sp"
|
android:textColor="@color/white"
|
android:textStyle="bold"
|
android:text="添加乘车人"
|
android:drawableStart="@mipmap/add"
|
android:drawablePadding="8dp"/>
|
</FrameLayout>
|
<cn.sinata.xldutils.view.SwipeRefreshRecyclerLayout
|
android:id="@+id/lv_list"
|
android:layout_width="match_parent"
|
android:layout_height="0dp"
|
app:layout_constraintTop_toTopOf="parent"
|
app:layout_constraintBottom_toTopOf="@id/ll_btn"/>
|
</androidx.constraintlayout.widget.ConstraintLayout>
|