<?xml version="1.0" encoding="utf-8"?>
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:orientation="vertical"
|
android:padding="12dp">
|
|
<TextView
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:text="选择分类"
|
android:textSize="18sp"
|
android:textStyle="bold"
|
android:layout_marginBottom="8dp"/>
|
|
<androidx.recyclerview.widget.RecyclerView
|
android:id="@+id/categoryRecyclerView"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"/>
|
|
<Button
|
android:id="@+id/saveButton"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:text="保存"
|
android:layout_marginTop="12dp"
|
android:backgroundTint="#000000"
|
android:textColor="#FFFFFF"/>
|
</LinearLayout>
|