2017-05-06 21:49:39 +08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-03-09 08:48:44 +08:00
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-04-29 20:58:52 +08:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2020-07-11 05:33:16 +08:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2017-05-06 21:49:39 +08:00
|
|
|
android:layout_width="match_parent"
|
2020-03-09 08:48:44 +08:00
|
|
|
android:layout_height="match_parent">
|
2017-05-06 21:49:39 +08:00
|
|
|
|
2020-05-01 06:35:17 +08:00
|
|
|
<LinearLayout
|
2017-05-06 21:49:39 +08:00
|
|
|
android:layout_width="match_parent"
|
2020-05-01 06:35:17 +08:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
2020-07-11 05:33:16 +08:00
|
|
|
<Button
|
|
|
|
android:id="@+id/btn_global_search"
|
2021-06-20 03:45:16 +08:00
|
|
|
style="?attr/borderlessButtonStyle"
|
2020-07-11 05:33:16 +08:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_margin="8dp"
|
|
|
|
android:visibility="gone"
|
|
|
|
tools:text="Search"
|
|
|
|
tools:visibility="visible" />
|
|
|
|
|
2020-07-20 09:33:19 +08:00
|
|
|
<androidx.viewpager.widget.ViewPager
|
2020-05-01 06:35:17 +08:00
|
|
|
android:id="@+id/library_pager"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
2020-03-09 04:37:49 +08:00
|
|
|
|
2017-05-06 21:49:39 +08:00
|
|
|
<eu.kanade.tachiyomi.widget.EmptyView
|
|
|
|
android:id="@+id/empty_view"
|
|
|
|
android:layout_width="wrap_content"
|
2020-02-22 07:43:50 +08:00
|
|
|
android:layout_height="wrap_content"
|
2017-05-06 21:49:39 +08:00
|
|
|
android:layout_gravity="center"
|
2020-02-22 07:43:50 +08:00
|
|
|
android:visibility="gone" />
|
2017-05-06 21:49:39 +08:00
|
|
|
|
2020-03-09 08:48:44 +08:00
|
|
|
</FrameLayout>
|