27 lines
1.1 KiB
XML
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> |