NewPipe-app-android/app/src/main/res/layout/activity_about.xml

40 lines
1.7 KiB
XML
Raw Normal View History

2017-07-04 09:31:53 +02:00
<?xml version="1.0" encoding="utf-8"?>
2020-10-09 20:24:02 +02:00
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
2017-07-04 09:31:53 +02:00
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context="org.schabi.newpipe.about.AboutActivity">
2019-10-04 14:59:08 +02:00
<com.google.android.material.appbar.AppBarLayout
2017-07-04 09:31:53 +02:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="@dimen/appbar_padding_top"
2021-03-26 15:12:20 +01:00
android:theme="@style/ThemeOverlay.AppCompat.DayNight.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.DayNight.ActionBar">
2017-07-04 09:31:53 +02:00
2019-10-04 14:59:08 +02:00
<androidx.appcompat.widget.Toolbar
android:id="@+id/about_toolbar"
2017-07-04 09:31:53 +02:00
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
2021-03-27 15:45:49 +01:00
android:theme="@style/ToolbarTheme"
2020-10-09 20:24:02 +02:00
app:layout_scrollFlags="scroll|enterAlways" />
2017-07-04 09:31:53 +02:00
2019-10-04 14:59:08 +02:00
<com.google.android.material.tabs.TabLayout
android:id="@+id/about_tabLayout"
2017-07-04 09:31:53 +02:00
android:layout_width="match_parent"
2021-03-27 15:45:49 +01:00
android:layout_height="wrap_content"
2021-03-27 17:15:53 +01:00
app:tabTextColor="@color/white"
app:tabIndicatorColor="@color/white" />
2017-07-04 09:31:53 +02:00
2019-10-04 14:59:08 +02:00
</com.google.android.material.appbar.AppBarLayout>
2017-07-04 09:31:53 +02:00
2020-10-18 01:15:10 +02:00
<androidx.viewpager2.widget.ViewPager2
android:id="@+id/about_viewPager2"
2017-07-04 09:31:53 +02:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
2020-10-09 20:24:02 +02:00
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
2019-10-04 14:59:08 +02:00
</androidx.coordinatorlayout.widget.CoordinatorLayout>