Skip to content Skip to sidebar Skip to footer

Draw A Dotted Circle In Android View

I need to display a dotted circle within a view.

Solution 1:

Try this solution:

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(demoview);
}

private class DemoView extends View{
    public DemoView(Context context){
        super(context);
    }

    @Override
    protected void onDraw(Canvas canvas) {
        super.onDraw(canvas);
        Paint p = new Paint();
        p.setColor(Color.RED);
        DashPathEffect dashPath = new DashPathEffect(new float[]{5,5}, (float)1.0);

        p.setPathEffect(dashPath);
        p.setStyle(Style.STROKE);
        canvas.drawCircle(100, 100, 50, p);

        invalidate();
    }
}

Post a Comment for "Draw A Dotted Circle In Android View"