
Originally Posted by
gtsarakt
Is there a problem with java's getWidth() on E* nokia mobiles?
What makes you suspect getWidth() rather than getHeight()?

Originally Posted by
grahamhughes
Do you use a Canvas in full-screen mode?
This would be useful to know.
Especially, if you do this:
Code:
setFullScreenMode(true);
height = getHeight();
This kind of code works fine on some devices, but on others it returns the old (non-full-screen) height. This is because resizing is often handled through the event mechanism, so the height doesn't change until the resize event can be delivered.
Graham.