MIDP 2.0
CLDC 1.1
Nokia 6630
This is a line of code from my simple Java ME project:
loginForm = new Form("Login");
This form doesn't fill the entire screen. I'm wondering how to go about making the form fill entire screen
Any suggestions?
Jeff
MIDP 2.0
CLDC 1.1
Nokia 6630
This is a line of code from my simple Java ME project:
loginForm = new Form("Login");
This form doesn't fill the entire screen. I'm wondering how to go about making the form fill entire screen
Any suggestions?
Jeff
what do u mean when u say doesnt fill the entire screen can u explain a little. what exactly are you trying to achieve.
Regards
Nouman
Forms can't fill the entire screen. They leave a space for Commands at the bottom, and status (battery, reception, etc.) at the top. There is nothing you can do about that. If you want full screen you need to use a Canvas.
shmoove