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

Android自定义ViewGroup

程序员文章站 2022-06-08 17:35:54
...

自定义ViewGroup与自定义View有一个非常重要的不同点是:需要复写onLayout(),记住一定是需要自己实现这个方法,否则当你调用这个view.addView()时,就会发现add进去的view永远不显示,令人头疼啊。
onLayout()方法一般复写如下:

    @Override
    protected void onLayout(boolean changed, int l, int t, int r, int b) {
        int count = getChildCount();
        for (int i = 0; i < count; i++) {
            View view = getChildAt(i);
            //划重点*** 这个地方切忌使用l和t作为起始点。。。。否则会捉急死。。。
            view.layout(0,0,view.getMeasuredWidth(),view.getMeasuredHeight());
        }
    }

另外还需要注意一点的是,viewgroup的onMeasure(),具体测量模式如下:

  @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        super.onMeasure(widthMeasureSpec, heightMeasureSpec);
        int count = getChildCount();
        for (int i = 0; i <count ; i++) {
            View view = getChildAt(i);
            ViewGroup.LayoutParams params = view.getLayoutParams();
            final  int widthMeaspec =   
            getChildMeasureSpec(widthMeasureSpec,getPaddingLeft()+getPaddingRight(),
                    params.width);
            final  int heightMeaspec = 
            getChildMeasureSpec(heightMeasureSpec,getPaddingTop()+getPaddingBottom(),params .height);
//关键是这个方法,measurechild()中传入的2个measurespe参数必须是经过调用系统的getChildMeasureSpec()方法得到的参数,而不是直接把onMeasure()的2个参数丢进来。否则,这个子view测量完后,它的宽和高就是父控件的宽和高。
            measureChild(view,widthMeaspec,heightMeaspec);
        }
    }