Android橡皮擦效果
2018-07-20 来源:open-open
public class ActionView extends View {
private Paint mPaint = new Paint();
private Path mPath = new Path();//手指滑动路径
private Canvas mCanvas;//缓存画布
private Bitmap mBitmap;//缓存图片
private float pointX, pointY;//触点坐标
public ActionView(Context context, AttributeSet attrs) {
super(context, attrs);
}
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
int width = getMeasuredWidth();
int height = getMeasuredHeight();
initPaint();//初始化画笔
mBitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888); //初始化Bitmap
mCanvas = new Canvas(mBitmap);
mCanvas.drawColor(Color.parseColor("#c0c0c0"));//设置画板背景
}
@Override
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
Bitmap mBackBitmap = BitmapFactory.decodeResource(getResources(), R.drawable.bg);
canvas.drawBitmap(mBackBitmap, 0, 0, null);
mPaint.setXfermode(new PorterDuffXfermode(PorterDuff.Mode.DST_OUT));
mCanvas.drawPath(mPath, mPaint);
canvas.drawBitmap(mBitmap, 0, 0, null);
}
@Override
public boolean onTouchEvent(MotionEvent event) {
pointX = event.getX();
pointY = event.getY();
switch (event.getAction()) {
case MotionEvent.ACTION_DOWN:
mPath.moveTo(pointX, pointY);//将路径移动到点(pointX, pointY),不绘制
break;
case MotionEvent.ACTION_MOVE:
mPath.lineTo(pointX, pointY);//绘制一条从上个触点到点(pointX, pointY)的线条
break;
}
invalidate();//重新绘图
return true;
}
private void initPaint() {//初始化画笔
mPaint.setDither(true);//设定是否使用图像抖动处理,会使绘制出来的图片颜色更加平滑和饱满,图像更加清晰
mPaint.setAntiAlias(true);//设置抗锯齿
mPaint.setStrokeWidth(30);
mPaint.setColor(Color.RED);//设置画笔颜色
mPaint.setStyle(Paint.Style.STROKE);
mPaint.setStrokeCap(Paint.Cap.ROUND);
mPaint.setStrokeJoin(Paint.Join.ROUND);//圆角
mPaint.setXfermode(new PorterDuffXfermode(PorterDuff.Mode.DST));
}
}
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点!
本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。
上一篇:iOS获取设备信息常用方法
下一篇:Android刮刮乐实现代码
最新资讯
热门推荐