Hi, I have a macbook and I use eclipse as IDE for developing connectIQ apps. When I draw a circle and run the simulator all is shown as it should be. However if I draw the same circle and draw an image inside this circle, the image is displayed correctly but the circle not. The parts of the circle are all over the screen of the simulator. When I run it on my watch, everything is drawn correctly. Anyone having also such problems? or a solution? :)
I haven't tried to reproduce this, but have you tried explicitly setting the pen width to 1 just before drawing the circle? There is a known issue drawing circles with pen width not equal to 1, and the problem you are seeing sounds very similar to that.
dc.setPenWidth(1); // try adding this...
dc.drawCircle(x, y, radius);