android——获取view的宽高

  1. 在activity生命周期方法:onCreate(),onStart(),onResume()中调用View.getWidth()和View.getHeight()方法获取View的高度是不可行的,因为此时布局没有加载是不可见状态。

    还有当view的可见状态为:GONE,时获取的宽高也是0;

2. 解决办法:

(1)直接测量:

1
2
3
4
5
6
7
8
9
10
private  void  first() {
         int  width = View.MeasureSpec.makeMeasureSpec( 0 ,
                 View.MeasureSpec.UNSPECIFIED);
         int  height = View.MeasureSpec.makeMeasureSpec( 0 ,
                 View.MeasureSpec.UNSPECIFIED);
         textView.measure(width, height);
         int  height1 = textView.getMeasuredHeight();
         int  width2 = textView.getMeasuredWidth();
         System.out.println( "first: 宽: "  + width2 +  "  高: "  + height1);
     }

(2)添加绘制view之前的监听

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
private  void  second() {
         ViewTreeObserver vto = textView.getViewTreeObserver();
 
         vto.addOnPreDrawListener( new
 
         ViewTreeObserver.OnPreDrawListener() {
 
             public  boolean  onPreDraw() {
 
                 int  height = textView.getMeasuredHeight();
 
                 int  width = textView.getMeasuredWidth();
 
                 System.out.println( "second:  宽:"  + width +  "  高: "  + height);
 
                 return  true ;
             }
 
         });
     }

(3)添加整体布局监听

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
private  void  third() {
         ViewTreeObserver vto = textView.getViewTreeObserver();
 
         vto.addOnGlobalLayoutListener( new  OnGlobalLayoutListener() {
 
             public  void  onGlobalLayout() {
 
                 textView.getViewTreeObserver().removeGlobalOnLayoutListener(
                         this );
 
                 int  height = textView.getMeasuredHeight();
 
                 int  width = textView.getMeasuredWidth();
                 System.out.println( "third:  宽:"  + width +  "  高: "  + height);
             }
 
         });
     }














本文转自wauoen51CTO博客,原文链接:http://blog.51cto.com/7183397/1606535  ,如需转载请自行联系原作者


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值