diff options
author | Bryson Steck <steck.bryson@gmail.com> | 2021-04-30 13:40:14 -0600 |
---|---|---|
committer | Bryson Steck <steck.bryson@gmail.com> | 2021-04-30 13:40:14 -0600 |
commit | 47ffcc64c0d443b16169f43848f1453ca8144031 (patch) | |
tree | 954a747334ec74dca23593572343cdf639e12117 /app/src/main/res/layout/activity_wiimmfi.xml | |
parent | 9e2a0fe9d72bab97c2cd69ff6994148eda22fd35 (diff) | |
download | wiimmfi-watcher-47ffcc64c0d443b16169f43848f1453ca8144031.tar wiimmfi-watcher-47ffcc64c0d443b16169f43848f1453ca8144031.tar.gz wiimmfi-watcher-47ffcc64c0d443b16169f43848f1453ca8144031.tar.bz2 |
finished designing fragments, need to start programming them soon
Diffstat (limited to 'app/src/main/res/layout/activity_wiimmfi.xml')
-rw-r--r-- | app/src/main/res/layout/activity_wiimmfi.xml | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/app/src/main/res/layout/activity_wiimmfi.xml b/app/src/main/res/layout/activity_wiimmfi.xml new file mode 100644 index 0000000..c7a94fd --- /dev/null +++ b/app/src/main/res/layout/activity_wiimmfi.xml @@ -0,0 +1,55 @@ +<?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" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:id="@+id/drawer_layout" + tools:context=".MainActivity"> + + <androidx.coordinatorlayout.widget.CoordinatorLayout + android:layout_width="match_parent" + android:layout_height="match_parent" + android:fitsSystemWindows="true"> + + <com.google.android.material.appbar.AppBarLayout + android:layout_width="match_parent" + android:layout_height="wrap_content" + style="@style/Widget.MaterialComponents.AppBarLayout.Primary" + android:fitsSystemWindows="true"> + + <com.google.android.material.appbar.MaterialToolbar + android:id="@+id/toolbar" + android:layout_width="match_parent" + android:layout_height="?attr/actionBarSize" + app:title="Watching 0000-0000-0000" + app:navigationIcon="@drawable/ic_baseline_menu_24" + style="@style/Widget.MaterialComponents.Toolbar.Primary" + android:background="@android:color/transparent" + android:elevation="0dp" /> + + </com.google.android.material.appbar.AppBarLayout> + + <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> + + <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" + app:menu="@menu/drawer_navigation_menu" + > + </com.google.android.material.navigation.NavigationView> + + +</androidx.drawerlayout.widget.DrawerLayout>
\ No newline at end of file |