现在的位置: 首页 > 综合 > 正文

Android设计模式系列(1)–SDK源码之组合模式

2013年08月11日 ⁄ 综合 ⁄ 共 782字 ⁄ 字号 评论关闭

Android中对组合模式的应用,可谓是泛滥成粥,随处可见,那就是View和ViewGroup类的使用。在android UI设计,几乎所有的widget和布局类都依靠这两个类。

组合模式,Composite Pattern,是一个非常巧妙的模式。几乎所有的面向对象系统都应用到了组合模式。

1.意图

将对象View和ViewGroup组合成树形结构以表示"部分-整体"的层次结构(View可以做为ViewGroup的一部分)。

组合模式使得用户对单个对象View和组合对象ViewGroup的使用具有一致性。

热点词汇: 部分-整体 容器-内容 树形结构 一致性 叶子 合成 安全性 透明性

2.结构

针对View和ViewGroup的实际情况,我们选择安全式的组合模式(在组合对象中添加add,remove,getChild方法),添加少许的注释,我们把上图修改为:

3.代码

View类的实现:

?
1
2
3
4
public class View{
        //...
...
        //省略了无关的方法
}

ViewGroup的实现:

?
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
public abstract class ViewGroup
extends View{
    /**
     *
Adds a child view.
     */
    public void addView(View
child) {
        //...
    }
 
    public void removeView(View
view) {
        //...
    }
 
    /**
     *
Returns the view at the specified position in the group.
     */
    public View
getChildAt(
int 

抱歉!评论已关闭.