Add basic conversation screen components

This commit is contained in:
nielsandriesse
2021-05-31 14:06:02 +10:00
parent 1e1e3bf0e8
commit b346a85d57
4 changed files with 121 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/contentView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/conversationRecyclerView"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>