Background colors

Hello

I've tried to change the background of my watchface to white.
I have tried this:
dc.clear();
dc.setColor(Gfx.COLOR_WHITE, Gfx.COLOR_WHITE);
dc.fillRectangle(0, 0, dc.getWidth(), dc.getHeight());

But no luck, my watchface background is still black.
  • Aren't you calling parent Ui.WatchFace.onUpdate(dc); after this code? This will clear your screen again - it should be called in the beginning.

    Btw. you can change background color just by setting colors before you call clear() and it will clear the screen with that bg color.