implement recycler view for userlist

This commit is contained in:
Carlos Martinez
2020-02-02 22:35:44 -03:00
parent 451d14ad95
commit 7d4432278e
8 changed files with 176 additions and 36 deletions

View File

@@ -3,10 +3,14 @@
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
android:orientation="vertical"
android:id="@+id/fragment_userlist_base">
<include
layout="@layout/item_user_card"
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/fragment_userlist_recycler_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />