开发中遇到的问题-自定义viewGroup内容不显示
程序员文章站
2022-06-08 17:34:12
...
最近在把一个之前写的一个界面封装成一个viewGroup的过程中发现了一个问题,viewgroup里面的 内容始终没有显示出来,在百度了几个小时之后,发现了问题出在那里。
一开始我认为这个控件不需要支持内边距,所以没有重写onLayout以及onMeasure的方法。后来试了一下只有在onLayout以及onMeasure都重写了的情况下,ViewGroup的内容才会正常显示。
下面是我的代码
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
measureChildren(widthMeasureSpec, heightMeasureSpec);
}
@Override
protected void onLayout(boolean changed, int l, int t, int r, int b) {
final int width = getMeasuredWidth();
final int height = getMeasuredHeight();
final int childLeft = getPaddingLeft();
final int childTop = getPaddingTop();
//由于这里child只有一个所以将整个长宽都设置给child
View child = this.getChildAt(0);
child.layout(childLeft, childTop, width - getPaddingRight(), height - getPaddingBottom());
}
需要注意一点的是我这里的Viewgroup只有一个子项,所以onlayout中的 child.layout 只调用了一次。如果你有多个childview,你就需要每个childView 都调用这个方法。
同时上面的onMeasure方法也需要做相应的调整。
下一篇: MyBatis技术初探