Why won't TextField display as a single line when using GridLayout?
publicvoid init(){
setLayout(new GridLayout(0, 2));
add(new TextField(20));
}
This displays a text box whose height will fill up the entire applet.
What gives?
This is for a homework so I have to use what the prof wants (gridlayout)

