11

I need to display a dotted circle within a view.

OneCricketeer
  • 179,855
  • 19
  • 132
  • 245
sek
  • 193
  • 1
  • 1
  • 9

1 Answers1

17

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();
    }
}
Gary Chen
  • 248
  • 2
  • 14
U.P
  • 7,357
  • 7
  • 39
  • 61