2016-04-19 17:08:37 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2019-05-31 07:42:26 +00:00
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
2019-06-03 15:12:29 +00:00
|
|
|
android:background="@color/white">
|
2019-08-24 11:21:26 +00:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
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"
|
|
|
|
|
tools:context=".ui.activities.PrefsActivity"
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:background="@color/white">
|
|
|
|
|
|
|
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
|
|
|
|
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"
|
|
|
|
|
android:theme="@style/Toolbar"
|
|
|
|
|
app:layout_scrollFlags="scroll|enterAlways"
|
|
|
|
|
app:popupTheme="@style/ThemeOverlay.AppCompat.Dark"/>
|
|
|
|
|
|
|
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
2016-04-19 17:08:37 +00:00
|
|
|
|
2018-11-06 15:11:02 +00:00
|
|
|
<com.google.android.material.tabs.TabLayout
|
2016-04-19 17:08:37 +00:00
|
|
|
android:id="@+id/tab_layout"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="?attr/actionBarSize"
|
|
|
|
|
android:layout_gravity="bottom"
|
|
|
|
|
android:background="?attr/colorPrimary"
|
|
|
|
|
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"
|
|
|
|
|
app:tabIndicatorColor="@android:color/white"
|
|
|
|
|
app:tabMode="fixed" />
|
|
|
|
|
|
2018-11-06 15:11:02 +00:00
|
|
|
<androidx.viewpager.widget.ViewPager
|
2017-10-31 17:31:06 +00:00
|
|
|
android:id="@+id/viewPager"
|
2016-04-19 17:08:37 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="0px"
|
|
|
|
|
android:layout_weight="1"
|
|
|
|
|
android:background="@android:color/white" />
|
|
|
|
|
|
2019-05-31 07:42:26 +00:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
|
android:id="@+id/snackbar_view"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="80dp"
|
|
|
|
|
android:layout_gravity="bottom"
|
2019-06-03 15:12:29 +00:00
|
|
|
android:layout_marginBottom="@dimen/spacing_large"/>
|
2019-05-31 07:42:26 +00:00
|
|
|
</FrameLayout>
|