侧滑菜单

//首先写布局,最大一层的布局写DrawerLayout 
.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/mydraw"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.bawei.day005.MainActivity">
//这里写的是主页面
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:orientation="vertical">

你可能感兴趣的:(android)