51 lines
1.8 KiB
XML
51 lines
1.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout 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_height="match_parent"
|
|
android:layout_width="match_parent">
|
|
|
|
<androidx.drawerlayout.widget.DrawerLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:id="@+id/Drawer"
|
|
android:fitsSystemWindows="true"
|
|
tools:openDrawer="start"
|
|
tools:context=".MainActivity">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:id="@+id/line"
|
|
android:layout_marginTop="20dp"
|
|
|
|
android:orientation="vertical">
|
|
<androidx.appcompat.widget.Toolbar
|
|
android:layout_width="match_parent"
|
|
android:layout_height="?attr/actionBarSize"
|
|
android:id="@+id/tollbar"
|
|
android:background="@color/colorPrimary"
|
|
android:elevation="4dp"
|
|
|
|
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
|
|
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" >
|
|
|
|
|
|
</androidx.appcompat.widget.Toolbar>
|
|
|
|
</LinearLayout>
|
|
|
|
<com.google.android.material.navigation.NavigationView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:id="@+id/navigation"
|
|
android:layout_gravity="start"
|
|
app:headerLayout="@layout/head"
|
|
app:menu="@menu/menu">
|
|
|
|
|
|
</com.google.android.material.navigation.NavigationView>
|
|
|
|
</androidx.drawerlayout.widget.DrawerLayout>
|
|
|
|
</RelativeLayout> |