35 lines
1.2 KiB
XML
35 lines
1.2 KiB
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="6dp"
|
|
android:layout_marginEnd="6dp"
|
|
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"/>
|
|
|
|
<!-- <include-->
|
|
<!-- android:id="@+id/includeLight"-->
|
|
<!-- android:layout_width="match_parent"-->
|
|
<!-- android:layout_height="wrap_content"-->
|
|
<!-- layout="@layout/layout_light_switch"-->
|
|
<!-- android:visibility="gone"/>-->
|
|
|
|
</FrameLayout> |