简体   繁体   English

更改笔触颜色会更改以前的笔触颜色

[英]Changing stroke color changes previous strokes color

I'm trying to make an android kids coloring book app, and when I'm firstly drawing with one color its ok, but when I change the brush color, all the previous coloring changes color as well. 我正在尝试制作一个android儿童图画书应用程序,当我第一次用一种颜色绘制时就可以了,但是当我更改画笔颜色时,所有以前的着色也会更改颜色。 What can be the solution of this problem? 该问题的解决办法是什么?

Starting to paint with one color: 开始用一种颜色绘画: 在此处输入图片说明

After changing the color and making another stroke this is what's happens 更改颜色并进行另一笔划后,这就是发生的情况

在此处输入图片说明

Here is my SignatureView class that is for this drawing surface: 这是用于此绘图表面的我的SignatureView类:

public class SignatureView extends View {

    private float STROKE_WIDTH = 5;

    /** Need to track this so the dirty region can accommodate the stroke. **/
    private final float HALF_STROKE_WIDTH = STROKE_WIDTH / 2;

    private Paint paint = new Paint();
    private Path path = new Path();

    /**
     * Optimizes painting by invalidating the smallest possible area.
     */
    private float lastTouchX;
    private float lastTouchY;
    private final RectF dirtyRect = new RectF();

    public SignatureView(Context context, AttributeSet attrs) {
        super(context, attrs);
        paint.setAntiAlias(true);
        paint.setColor(Color.CYAN);
        paint.setStyle(Paint.Style.STROKE);
        paint.setStrokeJoin(Paint.Join.ROUND);
        paint.setStrokeWidth(STROKE_WIDTH);
    }

    public float getBrushSize() {
        return STROKE_WIDTH;
    }

    public void setBrushSize(float brushSize) {
        this.STROKE_WIDTH = brushSize;
    }

    public void setColor(int color) {
        paint.setColor(color);
    }

    /**
     * Erases the signature.
     */
    public void clear() {
        path.reset();

        // Repaints the entire view.
        invalidate();
    }

    @Override
    protected void onDraw(Canvas canvas) {
        canvas.drawPath(path, paint);
    }

    @Override
    public boolean onTouchEvent(MotionEvent event) {
        float eventX = event.getX();
        float eventY = event.getY();

        switch (event.getAction()) {
        case MotionEvent.ACTION_DOWN:
            path.moveTo(eventX, eventY);
            lastTouchX = eventX;
            lastTouchY = eventY;
            // There is no end point yet, so don't waste cycles invalidating.
            return true;

        case MotionEvent.ACTION_MOVE:
        case MotionEvent.ACTION_UP:
            // Start tracking the dirty region.
            resetDirtyRect(eventX, eventY);

            // When the hardware tracks events faster than they are delivered,
            // the
            // event will contain a history of those skipped points.
            int historySize = event.getHistorySize();
            for (int i = 0; i < historySize; i++) {
                float historicalX = event.getHistoricalX(i);
                float historicalY = event.getHistoricalY(i);
                expandDirtyRect(historicalX, historicalY);
                path.lineTo(historicalX, historicalY);
            }

            // After replaying history, connect the line to the touch point.
            path.lineTo(eventX, eventY);
            break;

        default:
            // Log.("Ignored touch event: " + event.toString());
            return false;
        }

        // Include half the stroke width to avoid clipping.
        invalidate((int) (dirtyRect.left - HALF_STROKE_WIDTH),
                (int) (dirtyRect.top - HALF_STROKE_WIDTH),
                (int) (dirtyRect.right + HALF_STROKE_WIDTH),
                (int) (dirtyRect.bottom + HALF_STROKE_WIDTH));

        lastTouchX = eventX;
        lastTouchY = eventY;

        return true;
    }

    /**
     * Called when replaying history to ensure the dirty region includes all
     * points.
     */
    private void expandDirtyRect(float historicalX, float historicalY) {
        if (historicalX < dirtyRect.left) {
            dirtyRect.left = historicalX;
        } else if (historicalX > dirtyRect.right) {
            dirtyRect.right = historicalX;
        }
        if (historicalY < dirtyRect.top) {
            dirtyRect.top = historicalY;
        } else if (historicalY > dirtyRect.bottom) {
            dirtyRect.bottom = historicalY;
        }
    }

    /**
     * Resets the dirty region when the motion event occurs.
     */
    private void resetDirtyRect(float eventX, float eventY) {

        // The lastTouchX and lastTouchY were set when the ACTION_DOWN
        // motion event occurred.
        dirtyRect.left = Math.min(lastTouchX, eventX);
        dirtyRect.right = Math.max(lastTouchX, eventX);
        dirtyRect.top = Math.min(lastTouchY, eventY);
        dirtyRect.bottom = Math.max(lastTouchY, eventY);
    }

    public int getColor() {
        return paint.getColor();
    }

}

I'm changing the color using 我正在使用更改颜色

public void colorpicker() {
        AmbilWarnaDialog dialog = new AmbilWarnaDialog(this,
                signature.getColor(), new OnAmbilWarnaListener() {

                    @Override
                    public void onCancel(AmbilWarnaDialog dialog) {
                    }

                    @Override
                    public void onOk(AmbilWarnaDialog dialog, int color) {
                        signature.setColor(color);
                    }
                });
        dialog.show();
    }

Use a new path & paint object for each stroke. 为每个笔划使用新的路径和绘画对象。

Or, once you lift your finger, render the path to a Bitmap and use that for drawing. 或者,一旦松开手指,就将路径渲染到位图并将其用于绘图。

Bitmap drawing;
final Path path = new Path();

public void onMeasure(int widthMeasureSpec, int heightMeasureSpec){
    super.onMeasure(widthMeasureSpec, heightMeasureSpec);
    Bitmap newDrawing = Bitmap.createBitmap(getMeasuredWidth(), getMeasuredHeight(), Config.ARGB_8888);
    if(drawing != null){
        Canvas c = new Canvas(newDrawing);
        c.drawBitmp(drawing);
    }
    drawing = newDrawing;
}

public boolean onTouchEvent(MotionEvent e){
    int action = e.getAction();
    if(action == MotionEvent.ACTION_DOWN){
        path.reset();
    }else if(MotionEvent.ACTION_MOVE){
        if(path.isEmpty()){
            path.moveTo(e.getX(), e.getY());
        }else{
            path.lineTo(e.getX(), e.getY());
        }
    }else if(MotionEvent.ACTION_UP){
        drawing.drawPath(path);
    }
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 更改 textInputLayout 的描边颜色 - Changing Stroke color of a textInputLayout 在 Recyclerview Adapter 类中动态更改笔划的颜色 - Changing the color of the stroke dynamically in Recyclerview Adapter class TextView文本颜色在更改背景颜色时发生变化 - TextView text color changes on changing the background color 更改路径颜色而不更改以前的路径 - Changing path color without changing previous paths 更改drawable的按钮颜色后,我的笔划消失了,我无法再次设置笔划 - After changing button color of drawable my stroke is gone and I cannot set the stroke again 更改路径颜色而不更改以前的路径 - Change path color without changing previous paths 在 OpeGL ES Android 中更改背景颜色会更改纹理的颜色 - Changing background color in OpeGL ES Android changes color of texture 更改按钮的颜色会将整个布局颜色更改为白色 - Changing the color of a button changes the entire layout color to white Android:渐变作为填充颜色影响描边颜色 - Android: Gradient as fill color influences stroke color MaterialCardView 以编程方式更改背景颜色和描边颜色 - MaterialCardView change background color and stroke color programmatically
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM