最近做项目时,发现在activity的onCreate()和onResume()方法里调用View.getLocationInWindow()时,View.getLocationInWindow()返回空值,觉得很奇怪,因为以前用过,没有发现这个问题,于是调查了一下源码,这里把调查结果做个记录。
首先,看看View.getLocationInWindow()的实现,
public void getLocationInWindow(int[] location) {
// When the view is not attached to a window, this method does not make sense
if (mAttachInfo == null) return;
... ...
}
这里有注释,说明当view没有绑定到window时,返回在window里的坐标是没有意义的。的确,窗口都没有,哪来的窗口坐标呀!!
其次,看看view何时合适绑定到窗口。通过阅读源码,发现下面这段代码:
void dispatchAttachedToWindow(AttachInfo info, int visibility) {
//System.out.println("Attached! " + this);
mAttachInfo = info;
... ...
}