aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/abstract_activity.xml
blob: 35fbedd3fa80b2e7be93c6c61c9ad5115237d8ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?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"
	android:id="@+id/drawer_layout"
	android:layout_width="match_parent"
	android:layout_height="match_parent"
	android:fitsSystemWindows="true">

	<!-- The main content view -->
	<FrameLayout
		android:id="@+id/content_frame"
		android:layout_width="match_parent"
		android:layout_height="match_parent"/>

	<!-- The navigation drawer -->
	<com.google.android.material.navigation.NavigationView
		android:id="@+id/left_drawer"
		android:layout_width="wrap_content"
		android:layout_height="match_parent"
		android:layout_gravity="start"/>
</androidx.drawerlayout.widget.DrawerLayout>