美文网首页
Glide显示图片高度自适应

Glide显示图片高度自适应

作者: android难民 | 来源:发表于2016-11-10 16:18 被阅读1172次

首先,定义ImageView,在该ImageView中,我们需要设置属性android:adjustViewBounds="true",他的意思图片是否保持宽高比。切记的一点是该属性需要与maxWidth、MaxHeight一起使用,否则单独使用没有效果

<ImageView  
       android:id="@+id/img_list"  
       android:layout_width="fill_parent"  
       android:layout_height="wrap_content"  
       android:scaleType="fitXY"  
       android:adjustViewBounds="true"  
       android:src="@drawable/load_default_img" />  

剩下最主要的功能就是动态设置 ImageView 容器的高度

 Glide.with(mContext).load(item.getCoverfile_name()).asBitmap().into(new SimpleTarget<Bitmap>(Target.SIZE_ORIGINAL, Target.SIZE_ORIGINAL) {
                @Override
                public void onResourceReady(Bitmap resource, GlideAnimation<? super Bitmap> glideAnimation) {
                    int imageWidth = resource.getWidth();
                    int imageHeight = resource.getHeight();
                    ViewGroup.LayoutParams para = photo.getLayoutParams();


                    int maxHeight = XiurenUtils.dip2px(mContext, 400);
                    int height = (int) ((float) photo.getWidth()/imageWidth * imageHeight);
                    if (height > maxHeight) height = maxHeight;
                    para.height = height;
                    photo.setLayoutParams(para);
                    Glide.with(mContext).load(item.getCoverfile_name()).asBitmap().into(photo);
                }
            });

相关文章

网友评论

      本文标题:Glide显示图片高度自适应

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