2015-11-28 18:30:23 +00: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"
|
2019-08-24 11:21:26 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2015-11-28 18:30:23 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
2019-08-24 11:21:26 +00:00
|
|
|
tools:context=".ui.activities.PrefsActivity"
|
2021-06-04 14:11:48 +00:00
|
|
|
android:orientation="vertical">
|
2019-08-24 11:21:26 +00:00
|
|
|
|
|
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
2025-01-30 10:29:45 +00:00
|
|
|
android:id="@+id/appbar"
|
|
|
|
|
android:background="?attr/headerBackgroundColor"
|
2019-08-24 11:21:26 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.Toolbar
|
|
|
|
|
android:id="@+id/toolbar"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:minHeight="?attr/actionBarSize"
|
2020-08-26 10:58:04 +00:00
|
|
|
android:theme="@style/Toolbar.Modern"
|
2023-01-04 13:34:12 +00:00
|
|
|
style="@style/ToolbarTitleStyle"
|
2019-08-24 11:21:26 +00:00
|
|
|
app:layout_scrollFlags="scroll|enterAlways"
|
2020-09-29 10:48:20 +00:00
|
|
|
app:popupTheme="@style/PopupTheme"/>
|
2019-08-24 11:21:26 +00:00
|
|
|
|
|
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
2015-11-28 18:30:23 +00:00
|
|
|
|
2018-11-06 15:11:02 +00:00
|
|
|
<com.google.android.material.tabs.TabLayout
|
2015-11-28 18:30:23 +00:00
|
|
|
android:id="@+id/tab_layout"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="?attr/actionBarSize"
|
|
|
|
|
android:layout_gravity="bottom"
|
2020-09-17 15:58:59 +00:00
|
|
|
android:background="?headerOffsetColor"
|
2015-11-28 18:30:23 +00:00
|
|
|
android:elevation="0dp"
|
|
|
|
|
android:fillViewport="false"
|
|
|
|
|
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
|
|
|
|
|
app:layout_anchor="@+id/collapsing_toolbar"
|
|
|
|
|
app:layout_anchorGravity="bottom"
|
|
|
|
|
app:layout_collapseMode="pin"
|
|
|
|
|
app:tabGravity="fill"
|
2020-09-17 15:58:59 +00:00
|
|
|
app:tabIndicatorColor="?colorPrimary"
|
2015-11-28 18:30:23 +00:00
|
|
|
app:tabMode="fixed" />
|
|
|
|
|
|
2021-09-15 15:41:05 +00:00
|
|
|
<androidx.viewpager2.widget.ViewPager2
|
2018-07-12 09:17:28 +00:00
|
|
|
android:id="@+id/viewPager"
|
2015-11-28 18:30:23 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="0px"
|
|
|
|
|
android:layout_weight="1"
|
2022-11-22 14:48:15 +00:00
|
|
|
android:background="?attr/colorContentBackground" />
|
2015-11-28 18:30:23 +00:00
|
|
|
|
2025-01-30 10:29:45 +00:00
|
|
|
</LinearLayout>
|