android安卓onCreate方法中获取控件宽度高度
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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();
}
});
以上是关于android安卓onCreate方法中获取控件宽度高度的主要内容,如果未能解决你的问题,请参考以下文章