博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
glide加载圆角和自定义圆角view_Android中Glide加载圆形图片和圆角图片实例代码
阅读量:5976 次
发布时间:2019-06-20

本文共 4553 字,大约阅读时间需要 15 分钟。

搜索热词

一、简介:

介绍两种使用 BitmapTransformation 来实现 Glide 加载圆形图片和圆角图片的方法。Glide 并不能直接支持 Round Pictures ,需要使用 BitmapTransformation 来进行处理。

二、网上的实现方式

这里介绍下网上常见的方式和使用 RoundedBitmapDrawable 两种方法,本质上是差不多的:

使用 Canvas 和 Paint 来绘制

使用 Android.support.v4.graphics.drawable.RoundedBitmapDrawable

实现圆形图片:

/**

*

* Glide 圆形图片 Transform

*/

public class GlideCircleTransform extends BitmapTransformation {

public GlideCircleTransform(Context context) {

super(context);

}

@Override

protected Bitmap transform(BitmapPool pool,Bitmap toTransform,int outWidth,int outHeight) {

return circleCrop(pool,toTransform);

}

private static Bitmap circleCrop(BitmapPool pool,Bitmap source) {

if (source == null) return null;

int size = Math.min(source.getWidth(),source.getHeight());

int x = (source.getWidth() - size) / 2;

int y = (source.getHeight() - size) / 2;

Bitmap squared = Bitmap.createBitmap(source,x,y,size,size);

Bitmap result = pool.get(size,Bitmap.Config.ARGB_8888);

if (result == null) {

result = Bitmap.createBitmap(size,Bitmap.Config.ARGB_8888);

}

Canvas canvas = new Canvas(result);

Paint paint = new Paint();

paint.setShader(new BitmapShader(squared,BitmapShader.TileMode.CLAMP,BitmapShader.TileMode.CLAMP));

paint.setAntiAlias(true);

float r = size / 2f;

canvas.drawCircle(r,r,paint);

return result;

}

@Override

public String getId() {

return getClass().getName();

}

}

实现圆角图片:

/**

* Glide 圆角 Transform

*/

public class GlideRoundTransform extends BitmapTransformation {

private static float radius = 0f;

/**

* 构造函数 默认圆角半径 4dp

*

* @param context Context

*/

public GlideRoundTransform(Context context) {

this(context,4);

}

/**

* 构造函数

*

* @param context Context

* @param dp 圆角半径

*/

public GlideRoundTransform(Context context,int dp) {

super(context);

radius = Resources.getSystem().getDisplayMetrics().density * dp;

}

@Override

protected Bitmap transform(BitmapPool pool,int outHeight) {

return roundCrop(pool,toTransform);

}

private static Bitmap roundCrop(BitmapPool pool,Bitmap source) {

if (source == null) return null;

Bitmap result = pool.get(source.getWidth(),source.getHeight(),Bitmap.Config.ARGB_8888);

if (result == null) {

result = Bitmap.createBitmap(source.getWidth(),Bitmap.Config.ARGB_8888);

}

Canvas canvas = new Canvas(result);

Paint paint = new Paint();

paint.setShader(new BitmapShader(source,BitmapShader.TileMode.CLAMP));

paint.setAntiAlias(true);

RectF rectF = new RectF(0f,0f,source.getWidth(),source.getHeight());

canvas.drawRoundRect(rectF,radius,paint);

return result;

}

@Override

public String getId() {

return getClass().getName() + Math.round(radius);

}

}

三、笔者比较喜欢的简便的实现方式

//加载圆角图片

public static void loadRoundImage(final Context context,String url,final ImageView imageView){

Glide.with(context)

.load(url)

.asBitmap()

.placeholder(placeholder)

.error(placeholder)

.diskCacheStrategy(DiskCacheStrategy.ALL) //设置缓存

.into(new BitmapImageViewTarget(imageView){

@Override

protected void setResource(Bitmap resource) {

super.setResource(resource);

RoundedBitmapDrawable circularBitmapDrawable =

RoundedBitmapDrawableFactory.create(context.getResources(),resource);

circularBitmapDrawable.setCornerRadius(10); //设置圆角弧度

imageView.setImageDrawable(circularBitmapDrawable);

}

});

}

//加载圆形图片

public static void loadCirclePic(final Context context,final ImageView imageView) {

Glide.with(context)

.load(url)

.asBitmap()

.placeholder(placeholder)

.error(placeholder)

.diskCacheStrategy(DiskCacheStrategy.ALL) //设置缓存

.into(new BitmapImageViewTarget(imageView) {

@Override

protected void setResource(Bitmap resource) {

RoundedBitmapDrawable circularBitmapDrawable =

RoundedBitmapDrawableFactory.create(context.getResources(),resource);

circularBitmapDrawable.setCircular(true);

imageView.setImageDrawable(circularBitmapDrawable);

}

});

}

关于drawableToBitmap的源码的实现是这样的

public static Bitmap drawableToBitmap(Drawable drawable) {

// 取 drawable 的长宽

int w = drawable.getIntrinsicWidth();

int h = drawable.getIntrinsicHeight();

// 取 drawable 的颜色格式

Bitmap.Config config = drawable.getOpacity() != PixelFormat.OPAQUE ? Bitmap.Config.ARGB_8888

: Bitmap.Config.RGB_565;

// 建立对应 bitmap

Bitmap bitmap = Bitmap.createBitmap(w,h,config);

// 建立对应 bitmap 的画布

Canvas canvas = new Canvas(bitmap);

drawable.setBounds(0,w,h);

// 把 drawable 内容画到画布中

drawable.draw(canvas);

return bitmap;

}

/**

* RoundedBitmapDrawable 是 V4 下的一个类,不能简单的通过:强制转换成 BitmapDrawable

* Bitmap bitmap = ((BitmapDrawable)xxx).getBitmap();

*/

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程小技巧。

相关文章

总结

如果觉得编程之家网站内容还不错,欢迎将编程之家网站推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。

如您喜欢交流学习经验,点击链接加入交流1群:1065694478(已满)交流2群:163560250

转载地址:http://noiox.baihongyu.com/

你可能感兴趣的文章
测试组合索引
查看>>
四、物理优化(2)索引视图
查看>>
【沟通之道】头脑风暴-女人的心思你别猜
查看>>
redux-form(V7.4.2)笔记(一)
查看>>
钱趣多风控新举措:源头选择与物理隔离
查看>>
puppet最新源码包安装学习笔记
查看>>
烂泥:kickstart无人值守安装CentOS6.5
查看>>
Windows Phone 8 开发资源汇总
查看>>
互联网趋势关键词:交流,为价值付费,资源整合
查看>>
阿里钉钉,马云旗下的又一个千亿美金产品?
查看>>
Oracle 11gR2学习之三(创建用户及表空间、修改字符集和Oracle开机启动)
查看>>
熟练掌握Word2003中的突出显示功能
查看>>
编码过程中的问题总结
查看>>
网页与APP中那些优美的登陆表单
查看>>
快速幂取模模板
查看>>
Git:配置
查看>>
神经系统知识普及
查看>>
Spring可扩展Schema标签
查看>>
c++ STL unique , unique_copy函数
查看>>
函数模板的使用说明
查看>>