Help: Android paint/canvas issue; drawing smooth curves

Posted by Wrapper on Stack Overflow See other posts from Stack Overflow or by Wrapper
Published on 2010-04-14T16:02:43Z Indexed on 2010/04/14 16:43 UTC
Read the original article Hit count: 795

Filed under:
|
|
|
|

How do I get smooth curves instead of dots or circles, when I draw with my finger on the touch screen, in Android? I am using the following code-

public class DrawView extends View implements OnTouchListener {
private static final String TAG = "DrawView";

List<Point> points = new ArrayList<Point>();
Paint paint = new Paint();

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

    this.setOnTouchListener(this);

    paint.setColor(Color.WHITE);
    paint.setAntiAlias(true);
}

     @Override
    public void onDraw(Canvas canvas) {
    for (Point point : points) {
        canvas.drawCircle(point.x, point.y, 5, paint);
        // Log.d(TAG, "Painting: "+point);
    }
}

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

class Point {
float x, y;

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

© Stack Overflow or respective owner

Related posts about android

Related posts about draw