Android 获取View宽度

时间:2023-03-10 05:34:41
Android 获取View宽度
/*****************************************************************************
* Android 获取View宽度
* 说明:
* 在View默认的构造函数里无法获取到View的宽高,需要采用另外的方式获取。
*
* 2016-6-15 深圳 南山平山村 曽剑锋
****************************************************************************/ 一、参考文档:
If I call getMeasuredWidth() or getWidth() for layout in onResume they return
http://*.com/questions/6939002/if-i-call-getmeasuredwidth-or-getwidth-for-layout-in-onresume-they-return-0 二、解决办法:
this.post(new Runnable() {
public void run() {
centerX = getMeasuredWidth()/;
centerY = getMeasuredHeight()/;
ball = new Ball(centerX, centerY);
}
}
);