Adnroid设计模式-View和ViewGroup

Android中对组合模式的应用,可谓是泛滥成粥,随处可见,那就是View和ViewGroup类的使用。在android UI设计,几乎所有的widget和布局类都依靠这两个类。
组合模式,Composite Pattern,是一个非常巧妙的模式。几乎所有的面向对象系统都应用到了组合模式。

1.意图
将对象View和ViewGroup组合成树形结构以表示"部分-整体"的层次结构(View可以做为ViewGroup的一部分)。
组合模式使得用户对单个对象View和组合对象ViewGroup的使用具有一致性。
热点词汇: 部分-整体 容器-内容 树形结构 一致性 叶子 合成 安全性 透明性

2.结构

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

3.代码
View类的实现:

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

ViewGroup的实现:

 1 public abstract class ViewGroup extends View{ 
 2     /** 
 3      * Adds a child view.  
 4      */
 5     public void addView(View child) { 
 6         //... 
 7     } 
 8   
 9     public void removeView(View view) { 
10         //... 
11     } 
12   
13     /** 
14      * Returns the view at the specified position in the group. 
15      */
16     public View getChildAt(int index) { 
17         try { 
18             return mChildren[index]; 
19         } catch (IndexOutOfBoundsException ex) { 
20             return null; 
21         } 
22     } 
23   
24     //other methods 
25 }

4.效果
(1).结构型模式
(2).定义了包含基本对象和组合对象的类层次结构。这种结构能够灵活控制基本对象与组合对象的使用。
(3).简化客户代码。基本对象和组合对象有一致性,用户不用区分它们。
(4).使得更容易添加新类型的组件。
(5).使你的设计变得更加一般化。
 

posted @ 2013-06-09 09:55  zghbhdxw  阅读(336)  评论(0编辑  收藏  举报