onMeasure не вызывается в моей пользовательской группе просмотра Android - PullRequest
6 голосов
/ 13 октября 2011

У меня есть два пользовательских viewgroups, superViewGroup и subViewGroup. Подгруппа содержит представления. Я добавляю мою супервизорную группу к linearLayout и subViewGroups к моей superviewgroup.

Супергруппа onMeasure() вызывается, но не в подгруппе. но в обоих случаях вызывается onLayout() метод.

код следующий

public class SuperViewGroup extends ViewGroup{

    public SuperViewGroup(Context context) {
        super(context);
    }

    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        super.onMeasure(widthMeasureSpec, heightMeasureSpec);
        Log.i("boxchart","INSIDE ON MEASURE SUPER VIEWGROUP");
    }



    @Override
    protected void onLayout(boolean changed, int l, int t, int r, int b) {

        final int count = getChildCount();

        for (int i = 0; i < count; i++) {
            final View child = getChildAt(i);
            if (child.getVisibility() != View.GONE) {
                child.layout(0, 0, getWidth(), getHeight());

            }
        }


    }


}


public class SubViewGroup extends ViewGroup{

    public SubViewGroup(Context context) {
        super(context);
    }

    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        super.onMeasure(widthMeasureSpec, heightMeasureSpec);
        Log.i("boxchart","INSIDE ON MEASURE SUB VIEWGROUP");
    }



    @Override
    protected void onLayout(boolean changed, int l, int t, int r, int b) {

        final int count = getChildCount();

        for (int i = 0; i < count; i++) {
            final View child = getChildAt(i);
            if (child.getVisibility() != View.GONE) {
                child.layout(0, 0, getWidth(), getHeight());

            }
        }


    }


}

Комментарии приветствуются. заранее спасибо.

1 Ответ

7 голосов
/ 22 января 2013

Поскольку вы должны передать меру дочерним представлениям:

@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
    super.onMeasure(widthMeasureSpec, heightMeasureSpec);
    Log.i("boxchart","INSIDE ON MEASURE SUPER VIEWGROUP");
    final int count = getChildCount();

    final int count = getChildCount();
    for (int i = 0; i < count; i++) {
        final View child = getChildAt(i);
        if (child.getVisibility() != View.GONE) {
            //Make or work out measurements for children here (MeasureSpec.make...)
            measureChild (child, widthMeasureSpec, heightMeasureSpec)
        }
    }
}

В противном случае вы никогда не будете измерять своих детей. Вам решать, как это сделать. Только потому, что ваш SuperViewGroup находится в линейном расположении, ваш SuperViewGroup берет на себя ответственность измерить своих детей.

...