2026-04-16 10:48:19 +08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2026-04-16 16:38:52 +08:00
|
|
|
<layout xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout 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 16:38:52 +08:00
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2026-04-16 10:52:00 +08:00
|
|
|
android:layout_width="match_parent"
|
2026-04-16 16:38:52 +08:00
|
|
|
android:layout_height="400dp"
|
|
|
|
|
android:background="@drawable/bg_chat"
|
2026-04-16 16:01:03 +08:00
|
|
|
android:overScrollMode="never" />
|
2026-04-16 16:38:52 +08:00
|
|
|
<ProgressBar
|
|
|
|
|
android:id="@+id/pb"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/baseRecyclerView"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintBottom_toBottomOf="@+id/baseRecyclerView"
|
|
|
|
|
android:layout_width="50dp"
|
|
|
|
|
android:layout_height="50dp"
|
|
|
|
|
android:indeterminateDrawable="@drawable/load_progress" />
|
2026-04-16 10:48:19 +08:00
|
|
|
|
2026-04-16 16:38:52 +08:00
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/hint1"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginTop="12dp"
|
|
|
|
|
android:gravity="center"
|
|
|
|
|
android:text='滚动翻页'
|
|
|
|
|
android:textColor="#ff40FF5E"
|
|
|
|
|
android:textSize="14sp"
|
|
|
|
|
app:layout_constraintEnd_toStartOf="@+id/hint2"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/baseRecyclerView" />
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/hint2"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginTop="12dp"
|
|
|
|
|
android:gravity="center"
|
|
|
|
|
android:text='双击退出'
|
|
|
|
|
android:textColor="#ff40FF5E"
|
|
|
|
|
android:textSize="14sp"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toEndOf="@+id/hint1"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/baseRecyclerView" />
|
|
|
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
2026-04-16 16:01:03 +08:00
|
|
|
</layout>
|