原文地址:http://www.2cto.com/kf/201410/341592.html
注意:原文的第一种方法是不能测量match_parent类型的宽度和高度的下面这种方法是可以得,所以推荐使用这种方法。
ViewTreeObserver vto = imageView.getViewTreeObserver();
vto.addOnGlobalLayoutListener(new OnGlobalLayoutListener() {
@Override
public void onGlobalLayout() {
imageView.getViewTreeObserver().removeGlobalOnLayoutListener(this);
imageView.getHeight();
imageView.getWidth();
}
});