22 lines
777 B
XML
22 lines
777 B
XML
<?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"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:background="@drawable/shape_card_view"
|
|
android:orientation="vertical"
|
|
android:padding="5dp">
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/recycler_view"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:orientation="horizontal"
|
|
app:flexDirection="row"
|
|
app:flexWrap="wrap"
|
|
app:layoutManager="com.google.android.flexbox.FlexboxLayoutManager" />
|
|
|
|
</LinearLayout>
|
|
|