2020-07-01 17:08:28 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout 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:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
|
|
|
tools:viewBindingIgnore="true">
|
|
|
|
|
|
|
|
<include
|
|
|
|
android:id="@+id/container"
|
2020-08-30 06:47:04 +00:00
|
|
|
layout="@layout/layout_dm_inbox_item" />
|
2020-07-01 17:08:28 +00:00
|
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
android:id="@+id/rvChildComments"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2020-09-04 17:38:36 +00:00
|
|
|
android:layout_marginStart="40dp"
|
|
|
|
android:layout_marginLeft="40dp"
|
2020-07-01 17:08:28 +00:00
|
|
|
app:layoutManager="LinearLayoutManager"
|
|
|
|
tools:itemCount="5"
|
|
|
|
tools:listitem="@layout/item_comment_small" />
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="1dp"
|
|
|
|
android:layout_gravity="bottom"
|
2020-09-04 17:38:36 +00:00
|
|
|
android:layout_marginStart="4dp"
|
|
|
|
android:layout_marginEnd="4dp"
|
2020-07-01 17:08:28 +00:00
|
|
|
android:layout_marginBottom="4dp"
|
2020-09-04 17:38:36 +00:00
|
|
|
android:background="#32888888" />
|
2020-07-01 17:08:28 +00:00
|
|
|
</LinearLayout>
|