2017-04-26 19:24:33 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-10-09 18:24:02 +00:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-09-03 06:04:18 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2017-08-07 13:02:30 +00:00
|
|
|
android:layout_width="match_parent"
|
2017-09-03 06:04:18 +00:00
|
|
|
android:layout_height="match_parent">
|
2017-04-26 19:24:33 +00:00
|
|
|
|
2017-08-07 13:02:30 +00:00
|
|
|
|
2019-12-14 15:05:36 +00:00
|
|
|
<org.schabi.newpipe.views.ScrollableTabLayout
|
2017-08-07 13:02:30 +00:00
|
|
|
android:id="@+id/main_tab_layout"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2017-10-25 13:20:57 +00:00
|
|
|
android:layout_alignParentTop="true"
|
2018-01-30 07:01:57 +00:00
|
|
|
android:background="?attr/colorPrimary"
|
2020-10-09 18:24:02 +00:00
|
|
|
app:tabGravity="fill"
|
|
|
|
app:tabMinWidth="60dp" />
|
2017-08-07 13:02:30 +00:00
|
|
|
|
2019-10-04 12:59:08 +00:00
|
|
|
<androidx.viewpager.widget.ViewPager
|
2017-08-07 13:02:30 +00:00
|
|
|
android:id="@+id/pager"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="fill_parent"
|
2020-10-09 18:24:02 +00:00
|
|
|
android:layout_below="@id/main_tab_layout" />
|
2017-04-26 19:24:33 +00:00
|
|
|
|
|
|
|
</RelativeLayout>
|