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