Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Design a GUI for a J2ME app

How do I create a J2ME app for cellphones with a GUI similar to the menus you see in Java games? I've tried MIDlets with Netbeans but they only show you one GUI element at a time. (textbox, choice, login, etc)

And which Java IDE would you typically design these GUIs in? Netbeans or Eclipse? and is IntelliJ IDEA usable for this aswell?

Do I have to write/get a library that draws GUI controls to screen via bitmap functions .. and keeps track of the keys pressed for focus?

like image 501
Robin Rodricks Avatar asked Nov 28 '22 20:11

Robin Rodricks


1 Answers

Try to use LWUIT - nice UI toolkit for j2me: https://lwuit.dev.java.net/ http://lwuit.blogspot.com/

like image 96
alexkipar Avatar answered Dec 04 '22 03:12

alexkipar