我是靠谱客的博主 着急冰棍,最近开发中收集的这篇文章主要介绍Android 圆角图形和圆角头像的完美实现,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

/**
 * 圆角图片控件
 */
public class RoundImageView extends ImageView {

	public RoundImageView(Context context) {
		super(context);
		init();
	}

	public RoundImageView(Context context, AttributeSet attrs, int defStyle) {
		super(context, attrs, defStyle);
		init();
	}

	public RoundImageView(Context context, AttributeSet attrs) {
		super(context, attrs);
		init();
	}
	
	 private final RectF roundRect = new RectF();
	 private float rect_adius = 10;
	 private final Paint maskPaint = new Paint();
	 private final Paint zonePaint = new Paint();
	   private void init() {
           maskPaint.setAntiAlias(true);
           maskPaint.setXfermode(new PorterDuffXfermode(PorterDuff.Mode.SRC_IN));
           //
           zonePaint.setAntiAlias(true);
           zonePaint.setColor(Color.WHITE);
           //
           float density = getResources().getDisplayMetrics().density;
           rect_adius = rect_adius * density;
   }

   public void setRectAdius(float adius) {
           rect_adius = adius;
           invalidate();
   }

   @Override
   protected void onLayout(boolean changed, int left, int top, int right,
                   int bottom) {
           super.onLayout(changed, left, top, right, bottom);
           int w = getWidth();
           int h = getHeight();
           roundRect.set(0, 0, w, h);
   }

   @Override
   public void draw(Canvas canvas) {
           try {
			canvas.saveLayer(roundRect, zonePaint, Canvas.ALL_SAVE_FLAG);
			   canvas.drawRoundRect(roundRect, rect_adius, rect_adius, zonePaint);
			   //
			   canvas.saveLayer(roundRect, maskPaint, Canvas.ALL_SAVE_FLAG);
			   super.draw(canvas);
			   canvas.restore();
		} catch (Exception e) {
			e.printStackTrace();
		}
   }
	

}

最后

以上就是着急冰棍为你收集整理的Android 圆角图形和圆角头像的完美实现的全部内容,希望文章能够帮你解决Android 圆角图形和圆角头像的完美实现所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(75)

评论列表共有 0 条评论

立即
投稿
返回
顶部