This repository has been archived on 2026-05-26. You can view files and clone it. You cannot open issues or pull requests or push a commit.
2019-04-29 19:27:51 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<androidx.drawerlayout.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
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"
|
2019-05-21 18:55:29 +02:00
|
|
|
android:background="@color/background">
|
2019-04-29 19:27:51 +02:00
|
|
|
|
|
|
|
|
<include
|
|
|
|
|
layout="@layout/app_bar_main"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent" />
|
|
|
|
|
|
|
|
|
|
</androidx.drawerlayout.widget.DrawerLayout>
|