Hi,
sorry for my less specification.
I have tested in nokia 60 series and sumsung U800
. I have another issue regarding this.
That is:
when I use
Code:
graphices.drawImage(image,getWidth(),getHeight(), Graphics.HCENTER|Graphics.VCENTER )
image just print in the top left conrner in 1/4 area of screen.
But when I use
Code:
graphices.drawImage(image,getWidth(),getHeight(), Graphics.LEFT|Graphics.TOP )
In Sumsung it prints in total screen but still show the command button in bottom which I add in the canvas.
And in nokia 60 width is ok. But the height is still about half of the screen.
But I want to show the image in full screen wish covers the total area including the area of the command button. and I am using the setFullScreenMode(true) in constructor of canvas class.
I hope this represent my problem.
Please help me.

Originally Posted by
raj_J2ME
Hi,
Like rdrincon suggested that is the way for setting the full screen ,mode.As rdrincon ask to you which is/are the targeted devices ..you did not explain..
Have you test it by putting on device..??
However you can try these points -
@ You can check that - instead of the getWidth() and getHeight you can just initialize the width and height of the screen size..
@ You can use the setFullScreenMode(true); after that above written lines..width and height..
Thanks,