android 圆形头像 自定义ImageView

android中的ImageView只能显示矩形的图片,这样一来不能满足我们其他的需求,比如要显示圆形的图片,这个时候,我们就需要自定义ImageView了,其原理就是首先获取到图片的Bitmap,然后进行裁剪圆形的bitmap,然后在onDraw()进行绘制圆形图片输出。

代码如下

public class Y extends ImageView {

private Paint paint ;

public Y(Context context){
this(context,null, 0, 0);  
      

}
public Y(Context context, AttributeSet attrs) {  
       this(context, attrs,0, 0);  
   }  


public Y(Context context, AttributeSet attrs, int defStyleAttr,
int defStyleRes) {
super(context, attrs, defStyleAttr, defStyleRes);
paint = new Paint();
// TODO Auto-generated constructor stub
}

@Override
protected void onDraw(Canvas canvas) {
// TODO Auto-generated method stub
Drawable drawable =getDrawable();
if(null!=drawable){
Bitmap bitmap =((BitmapDrawable)drawable).getBitmap();
Bitmap b =getCircleBitamp(bitmap,14);
final Rect rextSrc =new Rect(0,0,b.getWidth(),b.getHeight());
final Rect rectDest =new Rect(0,0,getWidth(),getHeight());
paint.reset();
canvas.drawBitmap(b, rextSrc,rectDest, paint);
}else{
super.onDraw(canvas);
}

}
//获取圆形图片的方法
private Bitmap getCircleBitamp(Bitmap bitmap, int i) {
Bitmap output =Bitmap.createBitmap(bitmap.getWidth(),bitmap.getHeight(),Config.ARGB_8888);
Canvas canvas = new Canvas(output);
final int color =0xff424242;
final Rect rect =new Rect(0,0,bitmap.getWidth(),bitmap.getHeight());
paint.setAntiAlias(true);
canvas.drawARGB(0, 0, 0, 0);
paint.setColor(color);
int x =bitmap.getWidth();

canvas.drawCircle(x/2, x/2, x/2, paint);
paint.setXfermode(new PorterDuffXfermode(android.graphics.PorterDuff.Mode.SRC_IN));
canvas.drawBitmap(bitmap, rect,rect, paint);
return output;
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值