Hello all,
I'm new in this and I would like to create a simple watch face with the background in white color. But impossible. The thing I thought was the simpliest
Is anybody able to provide some working lines or methods?
Thanks!
Hello all,
I'm new in this and I would like to create a simple watch face with the background in white color. But impossible. The thing I thought was the simpliest
Is anybody able to provide some working lines or methods?
Thanks!
So some code like this clears the background (to white) or whatever color you specify:
dc.clearClip(); dc.setColor(COLOR_TRANSPARENT, COLOR_WHITE); dc.clear();
You then just need to make sure anything you draw after that is not white
dc.setColor(COLOR_BLACK, COLOR_TRANSPARENT);