2017-05-06 09:49:39 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-03-08 20:48:44 -04:00
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-04-29 08:58:52 -04:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2020-07-10 17:33:16 -04:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2017-05-06 09:49:39 -04:00
|
|
|
android:layout_width="match_parent"
|
2020-03-08 20:48:44 -04:00
|
|
|
android:layout_height="match_parent">
|
2017-05-06 09:49:39 -04:00
|
|
|
|
2020-04-30 18:35:17 -04:00
|
|
|
<LinearLayout
|
2017-05-06 09:49:39 -04:00
|
|
|
android:layout_width="match_parent"
|
2020-04-30 18:35:17 -04:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/downloaded_only"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2020-06-17 22:21:24 -04:00
|
|
|
android:background="@color/pale_green"
|
2020-07-10 17:33:16 -04:00
|
|
|
android:visibility="gone"
|
|
|
|
tools:visibility="visible">
|
2020-04-30 18:35:17 -04:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:padding="4dp"
|
|
|
|
android:text="@string/label_downloaded_only"
|
2020-06-17 22:21:24 -04:00
|
|
|
android:textColor="@color/md_black_1000" />
|
2020-04-30 18:35:17 -04:00
|
|
|
|
|
|
|
</FrameLayout>
|
|
|
|
|
2020-07-10 17:33:16 -04:00
|
|
|
<Button
|
|
|
|
android:id="@+id/btn_global_search"
|
|
|
|
style="@style/Theme.Widget.Button"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_margin="8dp"
|
|
|
|
android:textAllCaps="false"
|
|
|
|
android:visibility="gone"
|
|
|
|
tools:text="Search"
|
|
|
|
tools:visibility="visible" />
|
|
|
|
|
2020-07-19 11:48:41 -04:00
|
|
|
<androidx.viewpager2.widget.ViewPager2
|
2020-04-30 18:35:17 -04:00
|
|
|
android:id="@+id/library_pager"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
2020-03-08 16:37:49 -04:00
|
|
|
|
2020-04-25 10:49:42 -04:00
|
|
|
<eu.kanade.tachiyomi.widget.ActionToolbar
|
|
|
|
android:id="@+id/action_toolbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2020-04-29 08:58:52 -04:00
|
|
|
android:layout_gravity="bottom"
|
|
|
|
app:layout_dodgeInsetEdges="bottom" />
|
2017-05-06 09:49:39 -04:00
|
|
|
|
|
|
|
<eu.kanade.tachiyomi.widget.EmptyView
|
|
|
|
android:id="@+id/empty_view"
|
|
|
|
android:layout_width="wrap_content"
|
2020-02-21 18:43:50 -05:00
|
|
|
android:layout_height="wrap_content"
|
2017-05-06 09:49:39 -04:00
|
|
|
android:layout_gravity="center"
|
2020-02-21 18:43:50 -05:00
|
|
|
android:visibility="gone" />
|
2017-05-06 09:49:39 -04:00
|
|
|
|
2020-03-08 20:48:44 -04:00
|
|
|
</FrameLayout>
|