2021-04-30 13:40:14 -06:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<androidx.drawerlayout.widget.DrawerLayout 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"
|
2021-05-04 17:59:55 -06:00
|
|
|
android:id="@+id/drawer_layout"
|
2021-04-30 13:40:14 -06:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2021-05-04 17:59:55 -06:00
|
|
|
tools:context=".wiimmfi.WiimmfiActivity">
|
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">
|
|
|
|
|
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
2021-05-04 17:59:55 -06:00
|
|
|
style="@style/Widget.MaterialComponents.AppBarLayout.Primary"
|
2021-04-30 13:40:14 -06:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:fitsSystemWindows="true">
|
|
|
|
|
|
|
|
<com.google.android.material.appbar.MaterialToolbar
|
|
|
|
android:id="@+id/toolbar"
|
2021-05-04 17:59:55 -06:00
|
|
|
style="@style/Widget.MaterialComponents.Toolbar.Primary"
|
2021-04-30 13:40:14 -06:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="?attr/actionBarSize"
|
|
|
|
android:background="@android:color/transparent"
|
2021-05-04 17:59:55 -06:00
|
|
|
android:elevation="0dp"
|
|
|
|
app:navigationIcon="@drawable/ic_baseline_menu_24"
|
2021-05-18 20:48:17 -06:00
|
|
|
app:navigationIconTint="#FFFFFF"
|
|
|
|
app:title="Watching 0000-0000-0000"
|
|
|
|
app:titleTextColor="#FFFFFF" />
|
2021-04-30 13:40:14 -06:00
|
|
|
|
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
|
|
|
|
|
|
|
<androidx.fragment.app.FragmentContainerView
|
2021-05-04 17:59:55 -06:00
|
|
|
android:id="@+id/room_fragment"
|
2021-04-30 13:40:14 -06:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2021-05-04 17:59:55 -06:00
|
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior">
|
|
|
|
|
|
|
|
</androidx.fragment.app.FragmentContainerView>
|
2021-04-30 13:40:14 -06:00
|
|
|
|
|
|
|
<!-- Screen content -->
|
|
|
|
<!-- Use app:layout_behavior="@string/appbar_scrolling_view_behavior" to fit below top app bar -->
|
|
|
|
|
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|
|
|
|
|
|
|
|
<com.google.android.material.navigation.NavigationView
|
|
|
|
|
|
|
|
android:id="@+id/navigation_view"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_gravity="start"
|
2021-05-18 20:48:17 -06:00
|
|
|
android:theme="@style/Theme.WiimmfiWatcher"
|
|
|
|
app:headerLayout="@layout/header_navigation_drawer"
|
2021-05-04 17:59:55 -06:00
|
|
|
app:menu="@menu/drawer_navigation_menu">
|
|
|
|
|
2021-04-30 13:40:14 -06:00
|
|
|
</com.google.android.material.navigation.NavigationView>
|
|
|
|
|
|
|
|
|
|
|
|
</androidx.drawerlayout.widget.DrawerLayout>
|