mihon/app/src/main/res/layout/library_settings_sheet.xml

22 lines
783 B
XML
Raw Normal View History

2020-04-25 00:15:37 +02:00
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<com.google.android.material.tabs.TabLayout
android:id="@+id/library_settings_tabs"
style="@style/Theme.Widget.Tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:tabGravity="fill"
app:tabMode="fixed" />
<eu.kanade.tachiyomi.widget.MaxHeightViewPager
android:id="@+id/library_settings_pager"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>