Appearance
字体覆盖的时候,透明度如何设置
dc.setFill(dc.createColor(128, 0, 0, 0));

练习
https://www.facer.io/watchface/sJPvAaMYA9?watchModel=galaxywatch6black
图形半透明
// Draw the semi-transparent circles above and below
// to offset the time text
dc.setFill(0x80FFFFFF);
dc.setStroke(0x80FFFFFF);
dc.fillCircle(dc.getWidth() / 2, dc.getHeight() * 1.5, dc.getWidth() * .7);
dc.fillCircle(dc.getWidth() / 2, -(dc.getHeight()/2), dc.getWidth() * .7);