码迷,mamicode.com
首页 > 移动开发 > 详细

Android-获取窗口的宽度与高度

时间:2014-06-26 23:32:08      阅读:217      评论:0      收藏:0      [点我收藏+]

标签:android   style   class   blog   code   color   

在开发的过程中,有时候需要获取窗口的大小,在OnCreate中由于窗口还未绘制因此通过GetWidth()与GetHeight()得到的宽高都为0,那应该如何获取窗口的大小呢,上代码:

LinearLayout layout = (LinearLayout) findViewById(R.id.layout);
layout.getViewTreeObserver().addOnGlobalLayoutListener(new OnGlobalLayoutListener(){
    @SuppressWarnings("deprecation")
  @Override 
  public void onGlobalLayout() {            
    layout.getViewTreeObserver().removeGlobalOnLayoutListener(this);     int width = layout.getMeasuredWidth(); int height = layout.getMeasuredHeight(); }
});

 

Android-获取窗口的宽度与高度,布布扣,bubuko.com

Android-获取窗口的宽度与高度

标签:android   style   class   blog   code   color   

原文地址:http://www.cnblogs.com/biyaxiong/p/3807689.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!