Suzan Cioc
Suzan Cioc

Reputation: 30147

How to draw unfilled figures on Android?

Is it possible to draw unfilled figures on Android? By default circles and rectangles are filled.

Upvotes: 73

Views: 41295

Answers (1)

K-ballo
K-ballo

Reputation: 81409

You need to change the Paint style to stroke if you just want an outline with no fill:

Paint p = new Paint();
p.setStyle(Paint.Style.STROKE);

Upvotes: 175

Related Questions