如何在activity中获取view的宽高呢,很简单啊,直接view.getWidth(),view.getHeight()就可以啊。是的,一开始我也是这样以为的,but,结果是是不管是在onCreate()或onResume()中获取到的都是0,统统都是0,这我就很纳闷了啊,为什么呢,为什么呢。原来view的measure过程和Activity的生命周期不是同步执行的,无法保证Activity执行了onCreate,onStart,onResume时某个View已经测量完毕了,那么获得的宽高自然就是0了。如何获取呢?
方法如下:
1.Activity,View的onWindowFocusChanged方法
代码如下:
@Override
public void onWindowFocusChanged(boolean hasWindowFocus) {
super.onWindowFocusChanged(hasWindowFocus);
if (hasFocus()){
int width=getMeasuredWidth();
int height=getMeasuredHeight();
}
}
2.View.post(runnable)
通过post可以将一个runnable投递到消息队列的尾部,等待Looper调用该runnable时,view已经初始化完毕。代码如下:
mHello.post(new Runnable() {
@Override
public void run() {
int width=mHello.getMeasuredWidth();
int height=mHello.getMeasuredHeight();
}
});