27 lines
1013 B
XML
27 lines
1013 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
tools:background="@color/bg_page">
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/rvShelf"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
app:layoutManager="androidx.recyclerview.widget.GridLayoutManager"
|
|
app:spanCount="2"
|
|
android:overScrollMode="never"
|
|
android:layout_marginStart="12dp"
|
|
android:layout_marginEnd="12dp"
|
|
tools:listitem="@layout/list_item_shelf"/>
|
|
|
|
|
|
<include
|
|
android:id="@+id/include"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
layout="@layout/layout_empty_view"
|
|
android:visibility="gone"/>
|
|
</FrameLayout> |