Files
Android-WaterProject/app/src/main/res/layout/single_recycleview_item.xml
fengjignqi 7aed064ddb 排程部分功能优化,
解绑,删除,绑定
2026-05-30 15:53:15 +08:00

25 lines
1.0 KiB
XML

<?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"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/tv_week_name"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="2"
android:textSize="14sp"
android:textStyle="bold"
android:textColor="@color/color_222222"
android:text="周一"/>
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/rv_plan_detail_times"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="8"
tools:listitem="@layout/plan_detail_time_item"
tools:itemCount="2"
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"/>
</LinearLayout>