2017-07-04 07:31:53 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2019-10-04 12:59:08 +00:00
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout
|
2017-09-03 06:04:18 +00:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-07-04 07:31:53 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:id="@+id/main_content"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:fitsSystemWindows="true"
|
|
|
|
tools:context="org.schabi.newpipe.about.AboutActivity">
|
|
|
|
|
2019-10-04 12:59:08 +00:00
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
2017-07-04 07:31:53 +00:00
|
|
|
android:id="@+id/appbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingTop="@dimen/appbar_padding_top"
|
2017-09-03 06:04:18 +00:00
|
|
|
android:theme="@style/ThemeOverlay.AppCompat.ActionBar"
|
|
|
|
app:popupTheme="@style/ThemeOverlay.AppCompat.ActionBar">
|
2017-07-04 07:31:53 +00:00
|
|
|
|
2019-10-04 12:59:08 +00:00
|
|
|
<androidx.appcompat.widget.Toolbar
|
2017-07-04 07:31:53 +00:00
|
|
|
android:id="@+id/toolbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="?attr/actionBarSize"
|
|
|
|
android:background="?attr/colorPrimary"
|
2017-09-03 06:04:18 +00:00
|
|
|
app:layout_scrollFlags="scroll|enterAlways"/>
|
2017-07-04 07:31:53 +00:00
|
|
|
|
2019-10-04 12:59:08 +00:00
|
|
|
<com.google.android.material.tabs.TabLayout
|
2017-07-04 07:31:53 +00:00
|
|
|
android:id="@+id/tabs"
|
|
|
|
android:layout_width="match_parent"
|
2017-09-03 06:04:18 +00:00
|
|
|
android:layout_height="wrap_content"/>
|
2017-07-04 07:31:53 +00:00
|
|
|
|
2019-10-04 12:59:08 +00:00
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
2017-07-04 07:31:53 +00:00
|
|
|
|
2019-10-04 12:59:08 +00:00
|
|
|
<androidx.viewpager.widget.ViewPager
|
2017-07-04 07:31:53 +00:00
|
|
|
android:id="@+id/container"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior"/>
|
2019-10-04 12:59:08 +00:00
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|