Teraplex/app/src/main/res/layout/activity_main.xml

31 lines
1.2 KiB
XML
Raw Normal View History

2021-03-04 21:18:38 +01:00
<?xml version="1.0" encoding="utf-8"?>
<androidx.drawerlayout.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
2021-03-04 21:18:38 +01:00
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:openDrawer="start">
<include
layout="@layout/app_bar_main"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<com.google.android.material.navigation.NavigationView
android:id="@+id/nav_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
2021-03-04 21:18:38 +01:00
android:layout_gravity="start"
2021-06-11 21:48:30 +02:00
android:layout_marginTop="76dp"
android:background="@drawable/sidemenu"
2021-03-04 21:18:38 +01:00
android:fitsSystemWindows="true"
android:scaleType="centerCrop"
2021-03-04 21:18:38 +01:00
app:headerLayout="@layout/nav_header_main"
2021-06-11 21:48:30 +02:00
app:itemIconTint="@color/mtrl_btn_text_color_selector"
app:itemTextColor="@color/mtrl_btn_text_color_selector"
2021-03-04 21:18:38 +01:00
app:menu="@menu/activity_main_drawer" />
</androidx.drawerlayout.widget.DrawerLayout>