getMeasuredWidth和getWidth区别

①getMeasuredWidth方法获得的值是setMeasuredDimension方法设置的值,它的值在measure方法运行后就会确定

②getWidth方法获得是layout方法中传递的四个参数中的mRight-mLeft,它的值是在layout方法运行后确定的

③一般情况下在onLayout方法中使用getMeasuredWidth方法,而在除onLayout方法之外的地方用getWidth方法。

原文链接:https://blog.csdn.net/dmk877/article/details/49734869

你可能感兴趣的:(getMeasuredWidth和getWidth区别)