android 中遇到 imageView getWidth 始终为0 时 ,设置 setImageBitmap 的方法_移动开发_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > 移动开发 > android 中遇到 imageView getWidth 始终为0 时 ,设置 setImageBitmap 的方法

android 中遇到 imageView getWidth 始终为0 时 ,设置 setImageBitmap 的方法

 2014/7/18 16:57:54  张云飞VIR  程序员俱乐部  我要评论(0)
  • 摘要:先说说我的遇到的问题:1.我在activity里写一个fragment2.这个fragment里有个imageView,用于显示图片。我使用asyncTask获得图片,并准备在这个imageView中显示该图片的缩略图,我准备使用ThumbnailUtils.extractThumbnail方法生成缩略图。我们先看看ThumbnailUtils.extractThumbnail(source,width,height);这个方法的参数source源文件(Bitmap类型
  • 标签:android 方法 view imageView Map

先说说我的遇到的问题:

1. 我在activity里写一个 fragment

2.这个fragment里有个 imageView ,用于显示图片

我使用 asyncTask获得图片,并准备在这个imageView 中显示该图片的缩略图,我准备使用  ThumbnailUtils.extractThumbnail 方法生成缩略图。

 

我们先看看ThumbnailUtils.extractThumbnail(source, width, height);  这个方法的参数

    source 源文件(Bitmap类型)
    width  压缩成的宽度
      height 压缩成的高度

这里需要一个宽度和高度的参数。。要想再imageView里填满图片的话,这里就应该传入imageView的宽度和高度。

然而问题来了:在这里,使用imageView.getWidth方法获得宽度始终为0

 

经过一番搜索,终于找到解决方法,如下:

private void showImage(final File resultFileArg) {
        if (resultFileArg != null && resultFileArg.exists()) {
            // 添加下载图片至 imageView
            
          ViewTreeObserver vto2 = imageView1.getViewTreeObserver();
            vto2.addOnGlobalLayoutListener(new OnGlobalLayoutListener() {
                @Override
                public void onGlobalLayout() {
                    if (Build.VERSION.SDK_INT < 16) {
                        imageView1.getViewTreeObserver().removeGlobalOnLayoutListener(this);
                    } else {
                        imageView1.getViewTreeObserver().removeOnGlobalLayoutListener(this);
                    }

                    Bitmap bm = BitmapFactory.decodeFile(resultFileArg.getPath());

                    Bitmap thumbnailImg = ThumbnailUtils.extractThumbnail(bm,
                            imageView1.getMeasuredWidth(),
                            imageView1.getMeasuredHeight());
                    bm.recycle();
                    
                    imageView1.setImageBitmap(thumbnailImg);
                    // imageView1.setImageBitmap(bm);
                }
            });
        }
    }

 

使用步骤:

1.先获得imageView 的 一个ViewTreeObserver 对象。方法: imageView1.getViewTreeObserver()

2.为这个ViewTreeObserver 对象添加监听器(比如叫OnGlobalLayoutListener),方法:vto2.addOnGlobalLayoutListener

3.完成这个 OnGlobalLayoutListener的具体实现,在这个实现方法里就可以调用 imageView.getWidth方法 了。在这里完成我们需要的功能。

  • 相关文章
发表评论
用户名: 匿名