上章讲了自定义菜单键的实现 ,本章结合DrawerLayout实现侧滑功能。
主界面布局
<?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">
<!--顶部标题-->
<FrameLayout
android:id="@+id/content"
android:layout_width="match_parent"
android:layout_height="30dp"
android:background="#f00"
android:orientation="horizontal">
<com.example.user.dianchi_demo.back_View
android:id="@+id/tv_menu"
android:layout_width="20dp"
android:layout_height="30dp"
android:layout_marginLeft="5dp"
android:paddingLeft="200dp"
android:clickable="true"
android:gravity="center"
android:text="菜单" />
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:text="标题"
android:textColor="@android:color/white" />
</FrameLayout>
<android.support.v4.widget.DrawerLayout
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<!-- The navigation drawer ···滑动出来后显示的菜单栏页面布局-->
<include
android:id="@+id/left"
layout="@layout/left"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="left" />
<!-- The main content view ···没滑动前显示的页面布局 -->
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:text="其他内容" />
</android.support.v4.widget.DrawerLayout>
</LinearLayout>
侧滑菜单布局 left.xml
<?xml version="1.0" encoding="utf-8