DrawerLayout是Android官方提供的侧滑抽屉控件,通过它可以很方便的实现侧滑界面。
首先,编写工程的布局文件:1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="com.example.drawerviewtest.MainActivity">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!" />
<android.support.v4.widget.DrawerLayout
android:id="@+id/drawer_main"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TextView
android:id="@+id/content_text"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#AABBCC"
android:text="I'm content."/>
</LinearLayout>
<LinearLayout
android:layout_width="300dp"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="#FF99FF"
android:layout_gravity="start" >
<TextView
android:id="@+id/text_a"
android:layout_width="match_parent"
android:layout_height="50dp"
android:background="#FFFFFF"
android:layout_marginTop="4dp"
android:text="AAAAAA" />
<TextView
android:layout_width="match_parent"
android:layout_height="50dp"
android:background="#FFFFFF"
android:layout_marginTop="4dp"
android:text="BBBBBB" />
<TextView
android:layout_width="match_parent"
android:layout_height="50dp"
android:background="#FFFFFF"
android:layout_marginTop="4dp"
android:text="CCCCCC" />
<TextView
android:layout_width="match_parent"
android:layout_height="50dp"
android:background="#FFFFFF"
android:layout_marginTop="4dp"
android:text="DDDDDD" />
<TextView
android:layout_width="match_parent"
android:layout_height="50dp"
android:background="#FFFFFF"
android:layout_marginTop="4dp"
android:text="EEEEEE" />
</LinearLayout>
</android.support.v4.widget.DrawerLayout>
</LinearLayout>
DrawLayout标签中应当包含至少两个子View,
第一个子View是内容视图,
第二个子View是Drawer视图。
在这里对应XML中两个LinearLayout。
对于这两个子View的属性,DrawerLayout还有以下特殊要求:
项目 | 宽 | 高 | 其他 |
---|---|---|---|
Content | match_parent | match_parent | |
Drawer | 制定宽度 | match_parent | 需要layout_gravity |
现在直接运行,就可以操作侧滑菜单了,但是没有任何作用——因为我们还没有添加任何的点击事件和回调函数。
侧滑菜单状态的监听
DrawerLayout的状态可以通过其提供的回调函数监听到,我们在Activity中添加侧滑彩蛋的回调函数:1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25private DrawerLayout mDrawer;
mDrawer = (DrawerLayout) findViewById(R.id.drawer_main);
mDrawer.addDrawerListener(new DrawerLayout.DrawerListener() {
public void onDrawerSlide(View drawerView, float slideOffset) {
//Log.i(TAG, "--- onDrawerSlide");
}
public void onDrawerOpened(View drawerView) {
Log.i(TAG, "--- onDrawerOpened");
}
public void onDrawerClosed(View drawerView) {
Log.i(TAG, "--- onDrawerClosed");
}
public void onDrawerStateChanged(int newState) {
Log.i(TAG, "--- onDrawerStateChanged");
}
});
在回调函数中可以监听到滑动,打开,关闭,状态改变这些信息。
对于侧滑菜单中菜单项的点击事件,由于Drawer中的内容就是普通的布局文件,因此仍旧通过id找到View设置监听函数,或设定ListView监听函数即可。
1 | package com.example.drawerviewtest; |