Categories: Java | Java ME | UI | Code Examples
This page was last modified 18:02, 3 September 2007.
Exclusive list
From Forum Nokia Wiki
The following code creates an Exclusive list.
import javax.microedition.midlet.*; import javax.microedition.lcdui.*; public class Exclusive_List extends MIDlet { Display display=Display.getDisplay(this); public void startApp() { //List(label,type,items,Images) List list = new List("Exclusive list", List.EXCLUSIVE,new String[] {"Python", "J2ME", "Symbian"}, null); display.setCurrent(list); } }
The following screenshot is an outcome.
| Related Discussions | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Reteriveing Value fro List Box in UIQ | anupamcins | Symbian User Interface | 2 | 2004-11-22 05:00 |
| recordstore to list | cks | Mobile Java General | 3 | 2006-11-28 09:50 |
| SDKs and Tools | kyshzs | General Browsing | 7 | 2006-12-28 05:43 |
| How to create Radio Button List box on S60 | rmuralidharan | General Symbian C++ | 8 | 2008-04-10 14:00 |
| Please help me! | symbiannet | Symbian User Interface | 1 | 2003-05-11 13:03 |

