I'm having problems using the full screen on some Series60 devices (e.g. NGage and 3650).
I am extending the Nokia FullCanvas. I am aware that getHeight incorrectly returns 144. However, when I do:
graphics.drawImage(img, 0,0,0);
and the image is 162 x 162 pixels then the image is clipped on the screen at 144 pixels in height...
Is there anything else I need to do to open up the full screen? Do I need to explicitly call
graphics.setClip(0, 0, 176, 208); in the paint method? (At the moment I don't call setClip at all). Does the phone by default set its own clip to the wrong size?
Any help much appreciated.
Thanks and regards,
Simon

Reply With Quote

