美文网首页
getWidth()、getHeight()为0的解决办法

getWidth()、getHeight()为0的解决办法

作者: teletian | 来源:发表于2016-08-24 22:09 被阅读513次

    在onCreate()方法中获取View的width和height时,取出来的值是0。
    为什么呢?
    因为View的width和height只有在onMesure()和onLayout()被调用之后才能取到。而onCreate()被调用之后onMesure()和onLayout()才会被调用。
    解决方法有三:

    1.View.post()

    view.post(new Runnable() {  
        @Override  
        public void run() {  
            view.getHeight();  
        }  
    });
    

    解释一下View.post(Runnable)方法。
    将Runnable对象post到Handler里,这里的Handler是View的当前线程的Handler,View的当前线程当然就是UI线程了。在Handler里,它将传递过来的Runnable对象包装成一个Message,然后将其投入到UI线程的消息队列中。

    在setContentView()被调用后,会将一个要求重新Layout的Message投入到UI线程的消息队列中。所以获取高度的Message会在Layout之后执行,自然就能够正常的获取高度了。

    2.重写Activity的onWindowFocusChanged()

    @Override  
    public void onWindowFocusChanged(boolean hasFocus) {  
        super.onWindowFocusChanged(hasFocus);  
        getHeight();
    }  
    

    onWindowFocusChanged方法表示Activity已经初始化完毕了,任何初始化完毕后的操作都可以在这边执行,当然高度的获取也是可以的。

    3.注册监听器OnGlobalLayoutListener

    view.getViewTreeObserver().addOnGlobalLayoutListener(new OnGlobalLayoutListener() {  
        @Override  
        public void onGlobalLayout() {  
            getHeight();
            view.getViewTreeObserver().removeOnGlobalLayoutListener(this);  
        }  
    });  
    

    相关文章

      网友评论

          本文标题:getWidth()、getHeight()为0的解决办法

          本文链接:https://www.haomeiwen.com/subject/vfposttx.html