tachiyomi/app/src/main/res/layout/library_controller.xml

51 lines
1.7 KiB
XML
Raw Normal View History

2017-05-06 15:49:39 +02:00
<?xml version="1.0" encoding="utf-8"?>
2020-03-09 01:48:44 +01:00
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
2017-05-06 15:49:39 +02:00
android:layout_width="match_parent"
2020-03-09 01:48:44 +01:00
android:layout_height="match_parent">
2017-05-06 15:49:39 +02:00
<LinearLayout
2017-05-06 15:49:39 +02:00
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<FrameLayout
android:id="@+id/downloaded_only"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/colorSecondary"
android:visibility="gone">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:padding="4dp"
android:text="@string/label_downloaded_only"
android:textColor="?attr/colorOnSecondary" />
</FrameLayout>
<androidx.viewpager.widget.ViewPager
android:id="@+id/library_pager"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>
2020-03-08 21:37:49 +01:00
2020-04-25 16:49:42 +02:00
<eu.kanade.tachiyomi.widget.ActionToolbar
android:id="@+id/action_toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
app:layout_dodgeInsetEdges="bottom" />
2017-05-06 15:49:39 +02:00
<eu.kanade.tachiyomi.widget.EmptyView
android:id="@+id/empty_view"
android:layout_width="wrap_content"
2020-02-22 00:43:50 +01:00
android:layout_height="wrap_content"
2017-05-06 15:49:39 +02:00
android:layout_gravity="center"
2020-02-22 00:43:50 +01:00
android:visibility="gone" />
2017-05-06 15:49:39 +02:00
2020-03-09 01:48:44 +01:00
</FrameLayout>