1234567891011121314151617 |
- <?xml version="1.0" encoding="utf-8"?>
- <androidx.appcompat.widget.LinearLayoutCompat 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="match_parent"
- android:orientation="vertical"
- android:background="@color/color_black"
- tools:context=".screen.shop.ShopFragment">
- <androidx.recyclerview.widget.RecyclerView
- android:id="@+id/recyclerViewShop"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager" />
- </androidx.appcompat.widget.LinearLayoutCompat>
|