欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

【设计模式】Composite

程序员文章站 2022-08-04 09:01:34
[toc] 前言 Composite设计模式,将物体组合成一个树结构,让单个对象和组合对象使用起来都一样,组合对象负责将实际的操作分发给每一个组件。 这篇博文分析了安卓的View相关的类,它们可以说是用了Composite设计模式。其中分析View的measure,layout,draw是如何从组合 ......

前言

composite设计模式,将物体组合成一个树结构,让单个对象和组合对象使用起来都一样,组合对象负责将实际的操作分发给每一个组件。

这篇博文分析了安卓的view相关的类,它们可以说是用了composite设计模式。其中分析view的measure,layout,draw是如何从组合对象分发给单个对象。

【设计模式】Composite

安卓view的实现

android framework中view相关的类,就是用composite设计模式组织起来的。由于这涉及到了很多份源代码,如果一头扎进去看源码,心中想必是一团乱麻(码)。咱们带着问题去看源代码,效率会高一点。下面的问题分成两个类别。关于view流程的问题,每一个几乎都可以写一篇很长的博文,网上的大神们写了许多,这里我就简单的概括它的核心要义,截取看到的源代码。为了对composite设计模式有一个更好的认识,这里还是要去认识一下view这个类。

关于view的流程的:

  1. android中,view扮演着什么样的角色?
  2. 日常开发中常常见到的setcontentview做了什么事情?如何将xml文件变成对象的?
  3. view的绘制流程?

关于设计模式的:

  1. view是怎么样使用了composite设计模式的?它定义了哪些接口?
  2. 哪些view的子类具有容器性质的?它如何实现的add, remove, getchildren?
  3. 哪些view的子类是基本的组件?它如何实现view定义的方法?

view

废话不多说,先来一段官方文档。

this class represents the basic building block for user interface components. a view occupies a rectangular area on the screen and is responsible for drawing and event handling. view is the base class for widgets, which are used to create interactive ui components (buttons, text fields, etc.). the viewgroup subclass is the base class for layouts, which are invisible containers that hold other views (or other viewgroups) and define their layout properties.

view是构建ui组件的基本单元,是一个负责绘制(drawing)和事件处理(event handling)的方形区域。view是一些widgets的基类,widgets代表着composite设计模式中的基本组件。view是viewgroup的基类,viewgroup是一个不可见的布局容器,在composite设计模式中代表着容器。

beyond setcontentview

setcontentview做了什么事情?

这里主要参考[1]。

先来看看[1]绘制的层次结构。这里的层级关系是,外面的框框包含里面的框框的引用。比如activity里面有一个window对象,phonewindow里面有一个decorview对象。

【设计模式】Composite

这里给出一个类图,关注其中的数据结构和依赖关系。

【设计模式】Composite

大致流程

这里大概讲一讲流程,具体的细节要进入到下面的源代码去看。

结合类图来看这个分析。首先在activity中调用setcontentview之后,activity里调用window的setcontentview。实际的工作在phonewindow中进行。第一次调用,主要做三件事情。一,初始化mdecor和mcontentparent。这个通过调用installdecor来完成。二,通过layoutinflater将setcontentview的参数(layoutresid)指向的这个资源,设置到mcontentparent里。三,增加回调函数。

@override
public void setcontentview(int layoutresid) {
    // note: feature_content_transitions may be set in the process of installing the window
    // decor, when theme attributes and the like are crystalized. do not check the feature
    // before this happens.
    if (mcontentparent == null) {
        installdecor();
    } else if (!hasfeature(feature_content_transitions)) {
        mcontentparent.removeallviews();
    }

    if (hasfeature(feature_content_transitions)) {
        final scene newscene = scene.getsceneforlayout(mcontentparent, layoutresid,
                getcontext());
        transitionto(newscene);
    } else {
        mlayoutinflater.inflate(layoutresid, mcontentparent);
    }
    mcontentparent.requestapplyinsets();
    final callback cb = getcallback();
    if (cb != null && !isdestroyed()) {
        cb.oncontentchanged();
    }
    mcontentparentexplicitlyset = true;
}

installdecor函数

这里进一步分析一,installdecor函数。installdecor做两件事情:1,初始化mdecor;2,初始化mcontentparent。

private void installdecor() {
    mforcedecorinstall = false;
    if (mdecor == null) {
        mdecor = generatedecor(-1);
        mdecor.setdescendantfocusability(viewgroup.focus_after_descendants);
        mdecor.setisrootnamespace(true);
        if (!minvalidatepanelmenuposted && minvalidatepanelmenufeatures != 0) {
            mdecor.postonanimation(minvalidatepanelmenurunnable);
        }
    } else {
        mdecor.setwindow(this);
    }
    if (mcontentparent == null) {
        mcontentparent = generatelayout(mdecor);
        ...
    }
}

使用generatedecor函数初始化mdecor

generatedecor函数相当于一个工厂方法。获取context之后,调用decorview的构造器

protected decorview generatedecor(int featureid) {
    // system process doesn't have application context and in that case we need to directly use
    // the context we have. otherwise we want the application context, so we don't cling to the
    // activity.
    context context;
    if (musedecorcontext) {
        context applicationcontext = getcontext().getapplicationcontext();
        if (applicationcontext == null) {
            context = getcontext();
        } else {
            context = new decorcontext(applicationcontext, getcontext());
            if (mtheme != -1) {
                context.settheme(mtheme);
            }
        }
    } else {
        context = getcontext();
    }
    return new decorview(context, featureid, this, getattributes());
}

使用generatelayout函数初始化mcontentparent

初始化各种参数,最后根据调用window的getlocalfeatures方法获取features。根据features去找到一个r.layout,这个layout就是mdecor的布局了。调用decorview的onresourcesloaded函数来设置mdecor的mcontentroot。设置好了mdecor之后,调用window的findviewbyid,初始化contentparent。

protected viewgroup generatelayout(decorview decor) {
    ...

    int layoutresource;
    int features = getlocalfeatures();
    // system.out.println("features: 0x" + integer.tohexstring(features));
    if ((features & (1 << feature_swipe_to_dismiss)) != 0) {
        layoutresource = r.layout.screen_swipe_dismiss;
        setcloseonswipeenabled(true);
    }
    else if...

    ...
    mdecor.startchanging();
    mdecor.onresourcesloaded(mlayoutinflater, layoutresource);

    viewgroup contentparent = (viewgroup)findviewbyid(id_android_content);
    ...
    mdecor.finishchanging();

    return contentparent;
}

decorview.java

void onresourcesloaded(layoutinflater inflater, int layoutresource) {
    if (mbackdropframerenderer != null) {
        loadbackgrounddrawablesifneeded();
        mbackdropframerenderer.onresourcesloaded(
                this, mresizingbackgrounddrawable, mcaptionbackgrounddrawable,
                musercaptionbackgrounddrawable, getcurrentcolor(mstatuscolorviewstate),
                getcurrentcolor(mnavigationcolorviewstate));
    }

    mdecorcaptionview = createdecorcaptionview(inflater);
    final view root = inflater.inflate(layoutresource, null);
    if (mdecorcaptionview != null) {
        if (mdecorcaptionview.getparent() == null) {
            addview(mdecorcaptionview,
                    new viewgroup.layoutparams(match_parent, match_parent));
        }
        mdecorcaptionview.addview(root,
                new viewgroup.marginlayoutparams(match_parent, match_parent));
    } else {

        // put it below the color views.
        addview(root, 0, new viewgroup.layoutparams(match_parent, match_parent));
    }
    mcontentroot = (viewgroup) root;
    initializeelevation();
}

层级结构如何?

[1]中给出了一个图。想要自己看看这个图的方法,单步调试进入了window.java之后,监视getwindow().getdecorview(),可以看到它的结构。

decorview内有个viewgroup成员mcontentroot。decorview使用了装饰者模式,这里暂且不讲。把握好viewgroup的结构,mcontentroot就是下面的这个结构,首先它本身是一个linearlayout,然后它有mchildren数组,其中的一个成员是我们setcontentview输入的layout文件加载的地方。需要注意的是id_android_content指向的,mcontentroot的一个children,它是framelayout布局,是phonewindow的mcontentparent。

android.widget.linearlayout{375bc8 v.e...... ......i. 0,0-0,0}
|----- android.view.viewstub{55a31c3 g.e...... ......i. 0,0-0,0 #1020192 android:id/action_mode_bar_stub}
|----- android.widget.framelayout{262ca40 v.e...... ......i. 0,0-0,0 #1020002 android:id/content}
|------|----- android.support.constraint.constraintlayout{46206e9 v.e...... ......i. 0,0-0,0}

如何将xml文件变成对象的?

前面很多地方都看到了layoutinflater,使用这个类,可以将布局资源文件转为对象,这些对象像一棵树一样被组织起来。这里就不讲具体的代码分析了(看[1]有详细的分析),我们讲讲前面调用到这个类的inflate方法时候的意义。下面截取两行,我们需要搞清楚两个问题:

  1. inflate方法的第二个参数的意义
  2. infalte返回值的意义
phonewindow.java
mlayoutinflater.inflate(layoutresid, mcontentparent);

decorview.java
final view root = inflater.inflate(layoutresource, null);

下面的内容节选自layoutinflater.java。分析:这个方法是上面两个调用指向的,意义很明显,如果第一个参数为viewgroup,那么我们将parse出来的view加入到viewgroup的孩子中。如果第二个参数为null,那么我们直接返回parse出来的东西。下面有一句注释值得注意:temp is the root view that was found in the xml。

结合之前的代码,我们可以知道mdecor的mcontentroot,是根据window的features找到的xml的root view。phonewindow的mcontentparent,是根据window的id_android_content找到的view,指向的是mcontentroot的下的main layout。mcontentparent是一个framelayout,然后将我们开发中的布局文件(如activity_main.xml)加入到这个framelayout的下面。

public view inflate(xmlpullparser parser, @nullable viewgroup root, boolean attachtoroot) {
    synchronized (mconstructorargs) {
        ...
        try {
            ...
            if (tag_merge.equals(name)) {
                ...
            } else {
                // temp is the root view that was found in the xml
                final view temp = createviewfromtag(root, name, inflatercontext, attrs);

                viewgroup.layoutparams params = null;
                ...
                // we are supposed to attach all the views we found (int temp)
                // to root. do that now.
                if (root != null && attachtoroot) {
                    root.addview(temp, params);
                }

                // decide whether to return the root that was passed in or the
                // top view found in xml.
                if (root == null || !attachtoroot) {
                    result = temp;
                }
            }

        } 
        ...
        return result;
    }
}

小结

跳转来跳转去的,细节很多。这些细节终将被遗忘,我们能从这里获取到什么知识呢?或者能获取到对开发有帮助的哪些结论呢?

清楚了它的层次结构,知道我们的布局文件最终是在什么地方。大致了解这个流程。

[1]中提到的一些对开发有帮助的结论,具体看[1]。

  1. 减少布局的嵌套
  2. 使用viewstub,预加载。[2]举了一个例子。viewstub设置好要inflate的xml文件之后,调用inflate或者setvisibity来进行加载。
  3. 使用merge属性,减少嵌套。

view的绘制流程

先来一段官方文档[4]。

when an activity receives focus, it will be requested to draw its layout. the android framework will handle the procedure for drawing, but the activity must provide the root node of its layout hierarchy.

drawing begins with the root node of the layout. it is requested to measure and draw the layout tree. drawing is handled by walking the tree and rendering each view that intersects the invalid region. in turn, each viewgroup is responsible for requesting each of its children to be drawn (with the draw() method) and each view is responsible for drawing itself. because the tree is traversed pre-order, this means that parents will be drawn before (i.e., behind) their children, with siblings drawn in the order they appear in the tree.

drawing the layout is a two pass process: a measure pass and a layout pass.

the measuring pass is implemented in measure(int, int) and is a top-down traversal of the view tree. each view pushes dimension specifications down the tree during the recursion. at the end of the measure pass, every view has stored its measurements. the second pass happens in layout(int, int, int, int) and is also top-down. during this pass each parent is responsible for positioning all of its children using the sizes computed in the measure pass.

当获取到focus的时候,请求绘制layout。先序遍历这个layout的树结构,调用measure和layout两个过程。在这两个过程之后是draw。(文档的一部分,intersects the invalid,和无效区域判交,有点奇怪?)draw的过程是,每个viewgroup调用它的孩子的draw方法,每个view本身负责draw。

三个流程

后面主要参考[3]。

[3]中,总结了每个view都要经过的三个主要的阶段:measure, layout, draw。

三个过程的作用:
measure: measure the view and its content to determine the measured width and the measured height.测量整个view及其内容的宽度和高度。

layout: assign a size and position to a view and all of its descendants. in this phase, each parent calls layout on all of its children to position them.给view分配大小和位置,如果是一个parent,那么还要给它的children放置位置。

draw: manually render this view (and all of its children) to the given canvas.渲染view及其children的内容。

三个过程如何触发

[3]中,分析了在setcontentview,调用到了这些过程。

这里有一个疑惑,如果是这之后已经调用了measure,那么为什么在setcontentview这个函数之后,获取width和height,得到0呢?

后来在[3]下面的评论里,找到了[5],指出了[3]中微小的错误,专门分析了何时绘制view。。

[5]对为什么oncreate没有触发这三个流程,再补充一篇[6]。

[6]给出了结论:

  1. setcontentview() 只是把 view 添加到 decorview 上
  2. onresume() 中 viewrootimpl 和 decorview 做了关联
  3. requestlayout() 和 invalidate() 会触发 viewrootimpl 绘制 view

measure

具体请参见[3]。

【设计模式】Composite

view中的measure方法是final的,子类不能覆盖,这个方法里面有一段调用了onmeasure方法,子类通过覆盖onmeasure来实现自己的测量逻辑。

比如textview自己实现的逻辑(这里就不给了),比如framelayout自己实现的onmeasure。

framelayout是一个viewgroup,它的onmeasure主要的任务是遍历mchildren去measure。如果有match_parent属性的children,重新设定measurespec来measure。

layout

调用的思路和逻辑基本和measure一样。这里也没什么好说的,直接拿来[3]的结论。

  1. view.layout方法可被重载,viewgroup.layout为final的不可重载,viewgroup.onlayout为abstract的,子类必须重载实现自己的位置逻辑。
  2. measure操作完成后得到的是对每个view经测量过的measuredwidth和measuredheight,layout操作完成之后得到的是对每个view进行位置分配后的mleft、mtop、mright、mbottom,这些值都是相对于父view来说的。
  3. 凡是layout_xxx的布局属性基本都针对的是包含子view的viewgroup的,当对一个没有父容器的view设置相关layout_xxx属性是没有任何意义的
  4. 使用view的getwidth()和getheight()方法来获取view测量的宽高,必须保证这两个方法在onlayout流程之后被调用才能返回有效值。

draw

再次引用[3]的结论:

  1. 如果该view是一个viewgroup,则需要递归绘制其所包含的所有子view。
  2. view默认不会绘制任何内容,真正的绘制都需要自己在子类中实现。
  3. view的绘制是借助ondraw方法传入的canvas类来进行的。
  4. 区分view动画和viewgroup布局动画,前者指的是view自身的动画,可以通过setanimation添加,后者是专门针对viewgroup显示内部子视图时设置的动画,可以在xml布局文件中对viewgroup设置layoutanimation属性(譬如对linearlayout设置子view在显示时出现逐行、随机、下等显示等不同动画效果)。
  5. 在获取画布剪切区(每个view的draw中传入的canvas)时会自动处理掉padding,子view获取canvas不用关注这些逻辑,只用关心如何绘制即可。
  6. 默认情况下子view的viewgroup.drawchild绘制顺序和子view被添加的顺序一致,但是你也可以重载viewgroup.getchilddrawingorder()方法提供不同顺序。

关于第6点,补充一下,官方文档提到的,draw的顺序是先序遍历。

composite设计模式

是时候回到我们的设计模式上来了。

【设计模式】Composite

下面分析view的绘制是如何使用composite设计模式的。首先,对于所有的view子类,它们都有一些公共的方法measure, layout, draw。不管是单个对象还是组合对象,使用这些方法的逻辑是一样的。就好像单个对象和组合对象是一样的。其次,对于组合对象,这里是viewgroup,定义了接口viewmanager要实现。内部是一些组合对象需要拥有的方法,比如添加view,移除view。然而,既然view定义了measure, layout, draw为final方法,那么单个对象和组合对象不就没有区别了吗?组合对象又要怎么调用孩子去dosomething呢?其实,在view中定义了onmeasure, onlayout, ondraw三个方法,在measure, layout, draw的调用过程中,都会去调用对应的onxxx。这样继承view的单个对象实现自己的逻辑,继承view的组合对象不仅要实现自己的逻辑,还有实现对孩子们的调用。

measure, layout, draw的调用

view内部定义了三个方法,measure, layout, draw。这三个都做到了对扩展开发,对修改封闭。每个view要有自己的measure,layout逻辑,该怎么办呢?

解决办法就是view中的measure和layout去调用一个可以覆盖的方法onmeasure,onlayout。在本质上,onmeasure, onlayout, ondraw这三个方法的作用是扩展view。

viewgroup中没有具体的onmeasure和onlayout,一个layout继承viewgroup,实现自己的onmeasure和onlayout。这样就可以定义出很多不同种类的layout结构,比如relativelayout,linearlayout。相对布局和线性布局,它们都要有自己的layout逻辑,这些都放到onlayout中自己去定义。在定义自己的layout逻辑之外,还要负责调用孩子的measure方法,layout方法。

draw的逻辑有些许不一样。view中定义了draw的逻辑,里面有一些通用的逻辑,下面截取了view中的注释。2~5步,如果需要就跳过。对于第4步,view定义了dispatchdraw的空方法,viewgroup覆盖它来实现调用孩子的draw方法。

/*
* draw traversal performs several drawing steps which must be executed
* in the appropriate order:
*
*      1. draw the background
*      2. if necessary, save the canvas' layers to prepare for fading
*      3. draw view's content
*      4. draw children
*      5. if necessary, draw the fading edges and restore layers
*      6. draw decorations (scrollbars for instance)
*/

总结

composite设计模式,核心要义在于,不管是单个对象,还是组合对象,使用起来都一样。

这篇博客分析了android的view类,它的实现就是composite设计模式。

设计模式,它是前人总结出来的打怪(解决问题)的套路。有些时候一直在使用一些套路,但是没有意识到。于是有人总结出来,下一次遇到同一个问题的时候,相似的情景,用这个套路就可以很好的切入问题。

这篇博客写的又臭又长,难免存在错误,欢迎理性讨论。如果能指正我的错误,那是我最大的荣幸。

参考链接

  1. https://blog.csdn.net/yanbober/article/details/45970721
  2. https://droidyue.com/blog/2016/09/11/using-viewstub-in-android-to-improve-layout-performance/
  3. https://blog.csdn.net/yanbober/article/details/46128379
  4. https://developer.android.com/guide/topics/ui/how-android-draws
  5. https://www.jianshu.com/p/c5d200dde486
  6. https://juejin.im/post/5a61973bf265da3e2d338196