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

22 lines
749 B
XML
Raw Normal View History

2020-04-24 18:15:37 -04: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
2020-04-28 19:57:49 -04:00
android:id="@+id/tabs"
2020-04-24 18:15:37 -04:00
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
2020-04-28 19:57:49 -04:00
android:id="@+id/pager"
2020-04-24 18:15:37 -04:00
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>