请教一下 ViewGroup.getChildMeasureSpec 和 MeasureSpec.makeMeasureSpec 方法
在通知父布局,占用的宽,高; 也就是measureView(View view) 方法中, 老师我
int width = ViewGroup.getChildMeasureSpec(0, 0, layoutParams.width) ;
int height = ViewGroup.getChildMeasureSpec(0, 0, layoutParams.height) ;
view.measure(width, height) ; 这样写的 效果是一样的, 我觉得老师你那样写好像没有必要啊.
而且我希望 老师 能讲讲这两个方法的区别使用 谢谢了