Categories: Java | Java ME | UI | Code Examples
This page was last modified 17:59, 3 September 2007.
Multiple list
From Forum Nokia Wiki
The following code creates a Multiple list.
import javax.microedition.midlet.*; import javax.microedition.lcdui.*; public class Multiple_List extends MIDlet { Display display=Display.getDisplay(this); public void startApp() { //List(label,type,items,Images) List list = new List("Multiple list", List.MULTIPLE,new String[] {"Python", "J2ME", "Symbian"}, null); display.setCurrent(list); } }
The following screen shot is an outcome.
| Related Discussions | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Multiple simultaneous Bluetooth connections do not work on 7650? | NivAnt | Bluetooth Technology | 2 | 2002-09-02 07:23 |
| how to sending multiple message at a time | tallapaneni | General Symbian C++ | 9 | 2008-02-12 12:50 |
| Implementing a List using Canvas, or something else | jaazz | Mobile Java General | 6 | 2008-05-13 13:24 |
| CREATING EVENT LIST | silverrocha | General Symbian C++ | 1 | 2008-05-11 18:27 |
| Configurable Multiselection List | Josie60 | Symbian User Interface | 0 | 2003-08-04 21:18 |

