How to draw unfilled figures on Android? How to draw unfilled figures on Android? android android

How to draw unfilled figures on Android?


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);