2021-04-30 09:57:06 -06:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2021-04-30 13:40:14 -06:00
|
|
|
<androidx.drawerlayout.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2021-04-30 09:57:06 -06: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"
|
2021-04-30 13:40:14 -06:00
|
|
|
android:id="@+id/drawer_layout"
|
2021-04-30 09:57:06 -06:00
|
|
|
tools:context=".MainActivity">
|
|
|
|
|
2021-04-30 13:40:14 -06:00
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:fitsSystemWindows="true">
|
2021-04-30 09:57:06 -06:00
|
|
|
|
2021-04-30 13:40:14 -06:00
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
|
|
|
style="@style/Widget.MaterialComponents.AppBarLayout.Primary"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:fitsSystemWindows="true">
|
|
|
|
|
|
|
|
<com.google.android.material.appbar.MaterialToolbar
|
|
|
|
android:id="@+id/toolbar"
|
|
|
|
style="@style/Widget.MaterialComponents.Toolbar.Primary"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="?attr/actionBarSize"
|
|
|
|
android:background="@android:color/transparent"
|
|
|
|
android:elevation="0dp"
|
|
|
|
app:menu="@menu/top_app_bar"
|
|
|
|
app:title="Wiimmfi Friend Codes" />
|
|
|
|
|
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
|
|
|
|
|
|
|
<androidx.fragment.app.FragmentContainerView
|
|
|
|
android:id="@+id/fragment_container2"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
|
|
|
|
|
|
|
|
<androidx.fragment.app.FragmentContainerView
|
|
|
|
android:id="@+id/fragment_container"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<!-- Screen content -->
|
|
|
|
<!-- Use app:layout_behavior="@string/appbar_scrolling_view_behavior" to fit below top app bar -->
|
|
|
|
|
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|
|
|
|
|
|
|
|
|
|
|
|
</androidx.drawerlayout.widget.DrawerLayout>
|