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方法中获取控件宽度高度的主要内容,如果未能解决你的问题,请参考以下文章

Android在onCreate()方法中动态获取TextView控件的高度

android安卓动态设置控件宽高

背景图片拉伸,计算屏幕宽度和获取控件宽高

android某一app设为焦点app

android学习遇到的问题1

为啥说安卓activity的onCreate()方法 只调用一次