DrawerLayout**是Android官方提供的抽屉布局,在布局文中直接创建
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<androidx.drawerlayout.widget.DrawerLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<!--主布局-->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#564"></LinearLayout>
<!--抽屉布局 必须要有android:layout_gravity属性 设置从哪一测滑出-->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="left"
android:background="@color/colorPrimary">
</LinearLayout>
</androidx.drawerlayout.widget.DrawerLayout>
</LinearLayout>