Categories: Java | Java ME | UI | Code Examples
This page was last modified 18:01, 3 September 2007.
Implicit list
From Forum Nokia Wiki
The following code creates an Implicit list.
import javax.microedition.midlet.*; import javax.microedition.lcdui.*; public class Implicit_List extends MIDlet { Display display=Display.getDisplay(this); public void startApp() { //List(label,type,items,Images) List list = new List("Implicit list", List.IMPLICIT,new String[] {"Python", "J2ME", "Symbian"}, null); display.setCurrent(list); } }
The following screenshot is an outcome.
| Related Discussions | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| CLogViewDuplicate and Active Object | flashcfm | General Symbian C++ | 8 | 2005-03-04 06:27 |
| Setting list-row height | nadav70 | Symbian User Interface | 4 | 2007-12-03 12:56 |
| Need advice | tampstaffs | General Symbian C++ | 8 | 2007-10-16 20:47 |
| error: | ddeveloper | General Symbian C++ | 1 | 2005-04-11 19:03 |
| List Box in Series60 | anupamcins | Symbian User Interface | 2 | 2004-11-20 10:38 |

