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

自定义控件时在RecyclerView/ScrollView中高度不起作用

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

在写自定义控件时,控件嵌套在 RecyclerView 中,高度设置为 wrap_content 不起作用。

我的解决方法,在 onMeasure 中返回 childView 的高度,如下:

    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        int childCount = getChildCount();
        int height = 0;
        for (int i = 0; i < childCount; i++) {
            View child = getChildAt(i);
            // 为ScrollerLayout中的每一个子控件测量大小
            child.measure(widthMeasureSpec,
                    MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED));
            int h = child.getMeasuredHeight();
            if (h > height) //采用最大的view的高度。
                height = h;
        }
        heightMeasureSpec = MeasureSpec.makeMeasureSpec(height,
                MeasureSpec.EXACTLY);
        super.onMeasure(widthMeasureSpec, heightMeasureSpec);
    }

这样便能正常显示了~