habitica-android/Habitica/res/layout/activity_prefs.xml

43 lines
1.8 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
2017-10-03 18:13:29 +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"
2017-10-03 18:13:29 +00:00
tools:context=".ui.activities.PrefsActivity"
2021-06-04 14:11:48 +00:00
android:orientation="vertical">
2018-11-06 15:11:02 +00:00
<com.google.android.material.appbar.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
2018-11-06 15:11:02 +00:00
<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"
app:layout_scrollFlags="scroll|enterAlways"
app:popupTheme="@style/ThemeOverlay.AppCompat.Dark"/>
2018-11-06 15:11:02 +00:00
</com.google.android.material.appbar.AppBarLayout>
2020-11-20 13:58:52 +00:00
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
2017-10-03 18:13:29 +00:00
<FrameLayout
android:id="@+id/fragment_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
android:layout_gravity="top|center" >
2020-11-20 13:58:52 +00:00
</FrameLayout>
<FrameLayout
android:id="@+id/snackbar_container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="158dp"
android:layout_gravity="bottom"
android:paddingBottom="68dp"/>
2017-10-03 18:13:29 +00:00
</FrameLayout>
2017-10-03 18:13:29 +00:00
</LinearLayout>