0

I am very new in j2me. I want to design following type layout and components.

enter image description here

Mean I want to arrange my items in gridview. And after clicking on each item I will move to another form.

I am using simple lcdui. Please suggest me how can I do this. Means how can I arrange these items in gridview and what items should I use here buttons or something else.

You may provide me some suitable links.

gnat
  • 6,213
  • 108
  • 53
  • 73
Pushpendra Kuntal
  • 6,118
  • 20
  • 69
  • 119
  • regarding _suitable links_, since you mention lcdui - consider **['lcdui' tag wiki here at Stack Overflow](http://stackoverflow.com/tags/lcdui/info "API reference, links to tutorials, popular libraries etc...")** – gnat May 02 '12 at 09:52
  • 1
    I have done this and shared the code at http://smallandadaptive.blogspot.com.br/2010/12/touch-menu.html – Telmo Pimentel Mota May 02 '12 at 19:41

1 Answers1

2

In J2ME you have two options for UI: Form and Canvas.
Forms are a very simple way to display information without dealing with the graphical side of things, where Canvas is a blank screen and you need to draw the objects and their behaviors.

There is a third way: the guys at Sun has created a framework called (LWUIT which stands for Light Weight UI Toolkit). This toolkit provides the simplicity of Forms and the UI control of Canvas.

Hope i helped.

MrWhiteYoo
  • 363
  • 2
  • 5