mirror of
https://github.com/mihonapp/mihon.git
synced 2024-10-31 21:20:59 -04:00
42 lines
1.5 KiB
XML
42 lines
1.5 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
xmlns:tools="http://schemas.android.com/tools"
|
||
|
android:fitsSystemWindows="true">
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
<android.support.design.widget.AppBarLayout
|
||
|
android:id="@+id/appbar"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content">
|
||
|
|
||
|
<include layout="@layout/toolbar"/>
|
||
|
|
||
|
</android.support.design.widget.AppBarLayout>
|
||
|
|
||
|
<FrameLayout
|
||
|
android:id="@+id/frame_container"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent">
|
||
|
|
||
|
<android.support.v7.widget.RecyclerView
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:id="@+id/recycler"
|
||
|
tools:listitem="@layout/item_download"/>
|
||
|
|
||
|
<eu.kanade.tachiyomi.widget.EmptyView
|
||
|
android:id="@+id/empty_view"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_gravity="center"
|
||
|
android:visibility="gone"/>
|
||
|
</FrameLayout>
|
||
|
</LinearLayout>
|
||
|
|
||
|
</android.support.design.widget.CoordinatorLayout>
|