第一次提交

This commit is contained in:
被淹死的鱼
2026-03-11 18:26:29 +08:00
commit cd3b53759e
8532 changed files with 522078 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/messages_list_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/white"
android:layout_marginBottom="50dp">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recycler_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:cacheColorHint="@android:color/transparent" />
<RelativeLayout
android:id="@+id/emptyBg"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center"
android:layout_marginBottom="50dp"
android:visibility="gone"
>
<ImageView
android:id="@+id/emptyBg1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:contentDescription="@string/empty"
android:src="@drawable/nim_messages_list_empty_bg" />
<TextView
android:id="@+id/message_list_empty_hint"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@id/emptyBg1"
android:layout_centerHorizontal="true"
android:layout_marginTop="5dip"
android:gravity="center" />
</RelativeLayout>
</FrameLayout>