Hello. Newbie here with a question to get me started. I have set up the SDK and Eclipse. I have managed to create and run a new watch face project, and also a new widget project on the simulator. I can see the monkey on the widget, and see the time on the watch face.
The problem I am having is that nothing I draw appears on the watch simulator screen. I am using the functions [FONT=Courier New]dc.setColor(Gfx.COLOR_RED, Gfx.COLOR_WHITE);[/FONT] and [FONT=Courier New]dc.fillRectangle(30, 30, 60, 60);[/FONT], etc, before [FONT=Courier New]View.onUpdate(dc); [/FONT]in the [FONT=Courier New]onUpdate(dc)[/FONT] function. The code compiles and the app launches on the simulator, but nothing I draw will appear on screen.
I looked in the example apps and I cannot see what I am doing any different. Any tips to get me heading in the right direction please?