效果图:
现在市场上大多数软件都是类似于上面的结构,底部有几个按钮用于切换到不同的界面。基于OOP思想,我想把下面的一整块布局封装成一个类,也就是我们的自定义组合控件—底部多按钮切换布局,我把它叫做BottomLayout
看上面的布局,几个按钮横向排列,我们先看一下布局
最外面LinearLayout 方向 horizontal,然后5个weight相同的RelativeLayout,每个RelativeLayout里面有一个Button(用了显示选中状态)个ImageView(用来显示红点)
1 |
|
下面就是代码了
1 | package comzyh.bottomlayout; |
- 设置5个RelativeLayout为点击区域,防止有的地方点击没反应,设置到Button上(Button的background有可能变形)
- 封装Item点击的监听器
- 提供显示隐藏小圆点的方法
上面的布局可以进行一点优化
查看布局层次,发现中间多了一层LinearLayout,为什么呢?
因为我们的BottomLayout本身继承自LinearLayout,而且我们在代码中这样写的
1 | LayoutInflater.from(context).inflate(R.layout.layout_bottom, this); |
又添加了一层布局,怎么优化呢?
- 使用merge节点来消除冗余节点
所以布局文件我们可以写成下面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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<merge xmlns:android="https://schemas.android.com/apk/res/android"
android:gravity="center"
android:orientation="horizontal" >
<RelativeLayout
android:id="@+id/rl_home"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:clickable="true" >
<ImageView
android:id="@+id/iv_new_home"
android:layout_width="10dp"
android:layout_height="10dp"
android:layout_alignParentRight="true"
android:layout_margin="3dp"
android:src="@drawable/read_circle" />
<Button
android:id="@+id/btn_home"
android:layout_width="50dp"
android:layout_height="50dp"
android:layout_centerInParent="true"
android:background="@drawable/tab_home_selector"
android:clickable="false" />
</RelativeLayout>
<RelativeLayout
android:id="@+id/rl_encounter"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:clickable="true" >
<Button
android:id="@+id/btn_encounter"
android:layout_width="50dp"
android:layout_height="50dp"
android:layout_centerInParent="true"
android:background="@drawable/tab_enconter_selector"
android:clickable="false" />
</RelativeLayout>
<RelativeLayout
android:id="@+id/rl_community"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:clickable="true" >
<Button
android:id="@+id/btn_community"
android:layout_width="50dp"
android:layout_height="50dp"
android:layout_centerInParent="true"
android:background="@drawable/tab_community_selector"
android:clickable="false" />
</RelativeLayout>
<RelativeLayout
android:id="@+id/rl_message"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:clickable="true" >
<ImageView
android:id="@+id/iv_new_message"
android:layout_width="10dp"
android:layout_height="10dp"
android:layout_alignParentRight="true"
android:layout_margin="3dp"
android:src="@drawable/read_circle" />
<Button
android:id="@+id/btn_message"
android:layout_width="50dp"
android:layout_height="50dp"
android:layout_centerInParent="true"
android:background="@drawable/tab_message_selector"
android:clickable="false" />
</RelativeLayout>
<RelativeLayout
android:id="@+id/rl_user"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:clickable="true" >
<Button
android:id="@+id/btn_user"
android:layout_width="50dp"
android:layout_height="50dp"
android:layout_centerInParent="true"
android:background="@drawable/tab_user_selector"
android:clickable="false" />
</RelativeLayout>
</merge>
关于merge可以看我的这篇Android 视图优化merge标签分析
下面在主界面中
1 | <RelativeLayout xmlns:android="https://schemas.android.com/apk/res/android" |
使用自定义组合控件
1 | public class MainActivity extends Activity { |