<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="vertical" android:padding="@dimen/dp_10"> <LinearLayout android:layout_width="match_parent" android:layout_height="@dimen/titleViewHeight" android:gravity="center_vertical"> <ImageView android:layout_width="@dimen/dp_20" android:layout_height="@dimen/dp_20" android:contentDescription="@null" android:src="@mipmap/icon4" /> <TextView style="@style/textViewStyle" android:layout_marginHorizontal="@dimen/dp_10" android:text="拍照片" android:textSize="@dimen/sp_18" /> <TextView android:layout_width="wrap_content" android:layout_height="match_parent" android:layout_marginVertical="@dimen/dp_12" android:gravity="bottom" android:text="长按图片可删除" android:textColor="@color/red" android:textSize="@dimen/sp_12" /> </LinearLayout> <androidx.recyclerview.widget.RecyclerView android:id="@+id/addImageRecyclerView" android:layout_width="match_parent" android:layout_height="wrap_content" app:layoutManager="androidx.recyclerview.widget.GridLayoutManager" app:spanCount="3" /> </LinearLayout>