标签:android 安卓 获取控件宽度 获取控件高度 宽度 高度
ViewTreeObserver vto = imageView.getViewTreeObserver();
vto.addOnGlobalLayoutListener(new OnGlobalLayoutListener() {
public void onGlobalLayout() {
imageView.getViewTreeObserver().removeGlobalOnLayoutListener(this);
int height=imageView.getHeight();
int width =imageView.getWidth();
}
});
标签:android 安卓 获取控件宽度 获取控件高度 宽度 高度
原文地址:http://11020803.blog.51cto.com/11010803/1860236