2026-04-16 10:48:19 +08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<layout>
|
2026-04-16 10:52:00 +08:00
|
|
|
|
2026-04-16 10:48:19 +08:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
android:id="@+id/main"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:background="@color/app_color_black">
|
|
|
|
|
|
2026-04-16 10:52:00 +08:00
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
|
android:id="@+id/baseRecyclerView"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:overScrollMode="never" />
|
|
|
|
|
|
2026-04-16 10:48:19 +08:00
|
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
2026-04-16 10:52:00 +08:00
|
|
|
</layout>
|