I have report from a user that a data field of mine is not displaying properly. When I test this on the simulator all looks OK. Any ideas?
Looks like the width being reported by the device is greater than the actual width, so pushing the centre to the right?
Code snippet of code used to draw this:
absoluteCenterX = dc.getWidth() / 2; absoluteCenterY = dc.getHeight() / 2; dc.setPenWidth(8); dc.setColor(Gfx.COLOR_ORANGE, Gfx.COLOR_BLACK); dc.drawArc(absoluteCenterX, absoluteCenterY, absoluteCenterX - 4, 1, zone3End, zone4End);