Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to be able to draw multiple lines on the screen that follows the user touch. This was the original question that I asked. I figured out how to make it appear as if there are multiple paths using the 'moveTo()' method. The problem is every time I draw a line and remove my finger from the screen and then draw another line, the end of the first line and the beginning of the second line adds a seemingly random line.

Here's a picture to better understand what I'm talking about:

Two lines drawn

In the image above, I first drew the line on the left starting at the top going down. The line in the blue box was not there when I removed my finger from the screen. Then, when I place my finger on the screen to draw the second line, the lines in the blue boxes appear.

So, my question is how do I avoid these 'extra' lines from being drawn. To be more clear, how to stop the first line where my finger is released (above the blue box on the first line) and start the second line where my finger is placed (below the blue box on the second line)? Any advice or help will be great, thanks!

Here's my code:

public class DrawView extends View implements OnTouchListener {
    private static final String TAG = "DrawView";
    int lines = 0;
    ArrayList<Integer> startValues = new ArrayList<Integer>();
    List<Path> pathNumber = new ArrayList<Path>();
    ArrayList<Point> points = new ArrayList<Point>();
    Paint paint = new Paint();
    Path path;
    boolean lineChange = false; 
    int endNumber = 0;

public DrawView(Context context) {
    super(context);
    setFocusable(true);
    setFocusableInTouchMode(true);

    this.setOnTouchListener(this);

    paint = new Paint(Paint.ANTI_ALIAS_FLAG);
    paint.setStyle(Paint.Style.STROKE);
    paint.setStrokeWidth(2);
    paint.setColor(Color.WHITE);
}

public void onDraw(Canvas canvas) {
    path = new Path();

    if(points.size() > 1){
        for(int i = points.size() - 2; i <= points.size() - 1; i++){
            if(i >= 0){
                Point point = points.get(i);

                if(i == 0){//if its at the start
                    Point next = points.get(i + 1);
                    point.dx = ((next.x - point.x) / 3);
                    point.dy = ((next.y - point.y) / 3);
                }
                else if(i == points.size() - 1){//if its at the end
                    Point prev = points.get(i - 1);
                    point.dx = ((point.x - prev.x) / 3);
                    point.dy = ((point.y - prev.y) / 3);
                }
                else{//if its in the middle
                    Point next = points.get(i + 1);
                    Point prev = points.get(i - 1);
                    point.dx = ((next.x - prev.x) / 3);
                    point.dy = ((next.y - prev.y) / 3);
                }
            }
        }//end of if (points.size() > 1)

    }

    //need to save index in the ACTION_UP field then use logic to see if it equals the index when re-building the path (code below) use the moveTo method (which will end the old path and start a new one) 
    boolean first = true;
    for(int i = 0; i < points.size(); i++){
        Point point = points.get(i);

        for (int index = 0; index <= startValues.size() - 1; index++){
            if (i == startValues.get(index)){
                lineChange = true;
                endNumber = (startValues.get(index) - 1);
                break;
            }
        }

        if(first || lineChange){
            first = false;
            lineChange = false;
            path.moveTo(point.x, point.y);
        }else{
            Point prev = points.get(i - 1);
            path.cubicTo(prev.x + prev.dx, prev.y + prev.dy, point.x - point.dx, point.y - point.dy, point.x, point.y);
        }

    }

    canvas.drawPath(path, paint);

}

public boolean onTouch(View view, MotionEvent event) {
    if(event.getAction() != MotionEvent.ACTION_UP){
        Point point = new Point();
        point.x = event.getX();
        point.y = event.getY();
        points.add(point);
        invalidate();
        Log.d(TAG, "point: " + point);
        return true;
    }else if (event.getAction() == MotionEvent.ACTION_UP){
        startValues.add(points.size());
    }

    return super.onTouchEvent(event);
}

}

class Point {
    float x, y;
    float dx, dy;

    @Override
    public String toString() {
        return x + ", " + y;
    }
}

EDIT: I found this link which helps out a lot and solves the problem when using their code. Yet, I don't understand why or what I was doing wrong. So, if you could provide any help that'll be great!

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.