Android编程获取控件宽和高的方法总结分析

 更新时间:2016年01月11日 09:03:01   作者:java2009cgh  
这篇文章主要介绍了Android编程获取控件宽和高的方法,结合实例形式对比总结并分析了Android控件属性的相关操作技巧,需要的朋友可以参考下

本文总结分析了Android编程获取控件宽和高的方法。分享给大家供大家参考,具体如下:

我们都知道在onCreate()里面获取控件的高度是0,这是为什么呢?我们来看一下示例:

首先我们自己写一个控件,这个控件非常简单:

public class MyImageView extends ImageView {
  public MyImageView(Context context, AttributeSet attrs) {
    super(context, attrs);
  }
  public MyImageView(Context context) {
    super(context);
  }
  @Override
  protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
    super.onMeasure(widthMeasureSpec, heightMeasureSpec);
    System.out.println("onMeasure 我被调用了"+System.currentTimeMillis());
  }
  @Override
  protected void onDraw(Canvas canvas) {
    super.onDraw(canvas);
    System.out.println("onDraw 我被调用了"+System.currentTimeMillis());
  }
}

布局文件:

<com.test.MyImageView
  android:id="@+id/imageview"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:src="@drawable/test" />

测试的Activity的onCreate():

@Override
public void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.main);
  System.out.println("执行完毕.."+System.currentTimeMillis());
}

现在我们现在来看一下结果:

说明等onCreate方法执行完了,我们定义的控件才会被度量(measure),所以我们在onCreate方法里面通过view.getHeight()获取控件的高度或者宽度肯定是0,因为它自己还没有被度量,也就是说他自己都不知道自己有多高,而你这时候去获取它的尺寸,肯定是不行的.

现在碰到这个问题我们不能不解决,在网上找到了如下办法:

//------------------------------------------------方法一
int w = View.MeasureSpec.makeMeasureSpec(0,View.MeasureSpec.UNSPECIFIED);
int h = View.MeasureSpec.makeMeasureSpec(0,View.MeasureSpec.UNSPECIFIED);
imageView.measure(w, h);
int height =imageView.getMeasuredHeight();
int width =imageView.getMeasuredWidth();
textView.append("\n"+height+","+width);
//-----------------------------------------------方法二
ViewTreeObserver vto = imageView.getViewTreeObserver();
vto.addOnPreDrawListener(new ViewTreeObserver.OnPreDrawListener() {
  public boolean onPreDraw() {
    int height = imageView.getMeasuredHeight();
    int width = imageView.getMeasuredWidth();
    textView.append("\n"+height+","+width);
    return true;
  }
});
//-----------------------------------------------方法三
ViewTreeObserver vto2 = imageView.getViewTreeObserver();
vto2.addOnGlobalLayoutListener(new OnGlobalLayoutListener() {
  @Override
  public void onGlobalLayout() {
    imageView.getViewTreeObserver().removeGlobalOnLayoutListener(this);
    textView.append("\n\n"+imageView.getHeight()+","+imageView.getWidth());
  }
});

这三个方法是哪里找到现在已经忘了.

现在要讨论的是当我们需要时候使用哪个方法呢?

现在把测试的Activity改成如下:

@Override
 public void onCreate(Bundle savedInstanceState) {
   super.onCreate(savedInstanceState);
   setContentView(R.layout.main);
   final ImageView imageView = (ImageView) findViewById(R.id.imageview);
   //------------------------------------------------方法一
   int w = View.MeasureSpec.makeMeasureSpec(0,View.MeasureSpec.UNSPECIFIED);
   int h = View.MeasureSpec.makeMeasureSpec(0,View.MeasureSpec.UNSPECIFIED);
   imageView.measure(w, h);
   int height =imageView.getMeasuredHeight();
   int width =imageView.getMeasuredWidth();
   textView.append("\n"+height+","+width);
   System.out.println("执行完毕.."+System.currentTimeMillis());
 }

接着来看下面几种方式输出结果:

把测试Activity改成如下:

@Override
public void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.main);
  final ImageView imageView = (ImageView) findViewById(R.id.imageview);
//-----------------------------------------------方法二
  ViewTreeObserver vto = imageView.getViewTreeObserver();
  vto.addOnPreDrawListener(new ViewTreeObserver.OnPreDrawListener() {
    public boolean onPreDraw() {
      int height = imageView.getMeasuredHeight();
      int width = imageView.getMeasuredWidth();
      textView.append("\n"+height+","+width);
      return true;
    }
  });
}

结果如下:

方法三就不再测试了同方法二!!!

那么方法而和方法三在执行上有什么区别呢?

我们在布局文件中加入一个TextView来记录这个控件的宽高.

<ScrollView
  android:layout_width="wrap_content"
  android:layout_height="wrap_content" >
  <TextView
    android:id="@+id/text"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" />
</ScrollView>

先来测试方法二:

@Override
public void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.main);
  final ImageView imageView = (ImageView) findViewById(R.id.imageview);
//-----------------------------------------------方法二
  ViewTreeObserver vto = imageView.getViewTreeObserver();
  vto.addOnPreDrawListener(new ViewTreeObserver.OnPreDrawListener() {
    public boolean onPreDraw() {
      int height = imageView.getMeasuredHeight();
      int width = imageView.getMeasuredWidth();
      textView.append("\n"+height+","+width);
      return true;
    }
  });
}

结果如下:

我们再来测试方法三

@Override
public void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.main);
  final ImageView imageView = (ImageView) findViewById(R.id.imageview);
  //-----------------------------------------------方法三
  ViewTreeObserver vto2 = imageView.getViewTreeObserver();
  vto2.addOnGlobalLayoutListener(new OnGlobalLayoutListener() {
    @Override
    public void onGlobalLayout() {
      imageView.getViewTreeObserver().removeGlobalOnLayoutListener(this);
      textView.append("\n\n"+imageView.getHeight()+","+imageView.getWidth());
    }
  });
}

输出结果如下:

我想这方法二和方法三之间的区别就不用说了吧.

总结:那么需要获取控件的宽高该用那个方法呢?

方法一: 比其他的两个方法多了一次计算,也就是多调用了一次onMeasure()方法,该方法虽然看上去简单,但是如果要目标控件计算耗时比较大的话(如listView等),不建议使用.

方法二,它的回调方法会调用很多次,并且滑动TextView的时候任然会调用,所以不建议使用.

方法三,比较合适.

当然,实际应用的时候需要根据实际情况而定.

希望本文所述对大家Android程序设计有所帮助。

相关文章

  • Android Glide常见使用方式讲解

    Android Glide常见使用方式讲解

    对于Glide这个加载图片的框架,很多人都在用,我之前使用的是ImageLoader,最近查资料时,发现Glide才是Google推荐的加载图片框架,功能非常强大,而且还有Google专人维护,要知道,ImageLoader已经没人维护了,除了问题可没人解答。所以有必要整理一下Glide的使用
    2023-01-01
  • Android中应用前后台切换监听的实现详解

    Android中应用前后台切换监听的实现详解

    这篇文章主要给大家介绍了关于Android中应用前后台切换监听实现的相关资料,文中通过示例代码介绍的非常详细,对大家具有一定的参考学习价值,需要的朋友们下面跟着小编来一起学习学习吧。
    2017-07-07
  • Android实现上传文件到服务器实例详解

    Android实现上传文件到服务器实例详解

    本篇文章详细介绍了Android实现上传文件到服务器实例详解,实现了文件每隔5秒进行上传,有需要的可以了解一下。
    2016-11-11
  • Android自定义流式布局实现淘宝搜索记录

    Android自定义流式布局实现淘宝搜索记录

    这篇文章主要为大家详细介绍了Android自定义流式布局实现淘宝搜索记录,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2020-10-10
  • Android中监听未接来电的2种方法

    Android中监听未接来电的2种方法

    这篇文章主要介绍了Android中监听未接来电的2种方法,本文讲解了使用广播接收器 BrocastReceiver和使用 PhoneStateListener二种方法,需要的朋友可以参考下
    2015-04-04
  • Android RxJava与Retrofit结合使用详解

    Android RxJava与Retrofit结合使用详解

    RxJava和Retrofit的结合使用估计已经相当普遍了,自己工作中也是一直都在使用。在使用的过程中我们都会对其进行封装使用,GitHub上也有很多封装好的项目可以直接拿来使用,其实对于开源框架的二次封装有时候针对不同的业务逻辑封装的过程中也多多少少有些不同
    2023-03-03
  • Android实现读写USB串口数据

    Android实现读写USB串口数据

    这篇文章主要为大家详细介绍了Android实现读写USB串口数据,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2022-09-09
  • Android中RecyclerView布局代替GridView实现类似支付宝的界面

    Android中RecyclerView布局代替GridView实现类似支付宝的界面

    RecyclerView比GridView来得更加强大,不仅是在分割线的绘制方面,在条目的编辑上也做得同样出色,下面就来看一下Android中RecyclerView布局代替GridView实现类似支付宝的界面的实例
    2016-06-06
  • Android 屏幕截屏方法汇总

    Android 屏幕截屏方法汇总

    这篇文章主要介绍了Android 屏幕截屏方法汇总的相关资料,需要的朋友可以参考下
    2016-02-02
  • Android仿新版微信浮窗效果

    Android仿新版微信浮窗效果

    在新版微信中,可以把浏览的文章缩小为浮窗.点击浮窗继续阅读.这篇文章主要介绍了Android仿新版微信浮窗效果,需要的朋友可以参考下
    2018-06-06

最新评论