Recyclerview in DialogFragment

Issue I’m using following code to create xml layout resource. <?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” android:layout_width=”match_parent” android:layout_height=”wrap_content” android:orientation=”vertical”> <TextView android:id=”@+id/textView1″ android:layout_width=”0dp” android:layout_height=”@dimen/dp48″ android:clickable=”true” android:focusable=”true” android:gravity=”center” android:fontFamily=”@font/trebuchet” android:text=”@string/select_a_folder” android:textColor=”?attr/colorAccent” android:textSize=”16sp” app:layout_constraintVertical_chainStyle=”packed” app:layout_constraintBottom_toTopOf=”@+id/recyclerViewFolderList” app:layout_constraintEnd_toEndOf=”parent” app:layout_constraintTop_toTopOf=”parent” app:layout_constraintStart_toStartOf=”parent” /> <androidx.recyclerview.widget.RecyclerView android:id=”@+id/recyclerViewFolderList” android:layout_width=”0dp” android:layout_height=”wrap_content”

Continue reading