kchat/app/src/main/res/layout/activity_message.xml
kaixed fea67b33ce feat(好友模块): 添加好友申请功能
1.添加好友申请功能
2.添加接受好友申请功能
3.使用kotlinx-serialization-json代替部分gson
2024-10-22 22:20:18 +08:00

27 lines
1.1 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout 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:id="@+id/main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/gray"
android:fitsSystemWindows="true"
tools:context=".view.activity.MessageActivity">
<com.kaixed.kchat.view.widget.CustomTitleBar
android:id="@+id/ctl"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_constraintTop_toTopOf="parent"
app:titleName="新的朋友" />
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recycle_friend_request_list"
android:layout_width="match_parent"
android:layout_height="0dp"
android:overScrollMode="never"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintTop_toBottomOf="@id/ctl" />
</androidx.constraintlayout.widget.ConstraintLayout>