android安卓onCreate方法中获取控件宽度高度

枕上诗书闲处好,门前风景雨来佳。这篇文章主要讲述android安卓onCreate方法中获取控件宽度高度相关的知识,希望能为你提供帮助。
【android安卓onCreate方法中获取控件宽度高度】ViewTreeObserver vto = imageView.getViewTreeObserver();    
vto.addOnGlobalLayoutListener(new OnGlobalLayoutListener() {
public void onGlobalLayout() {
imageView.getViewTreeObserver().removeGlobalOnLayoutListener(this);  
int height=imageView.getHeight();
int width =imageView.getWidth();
}
});



    推荐阅读