Namespaces
Variants
Actions
(Difference between revisions)

Choice group in Java ME (Português)

Jump to: navigation, search
m (moved Choice group. to Choice group in Java ME (Português): More specific name)
m (Lpvalente -)
 
Line 5: Line 5:
 
|devices= <!-- Devices tested against - e.g. ''devices=Nokia 6131 NFC, Nokia C7-00'') -->
 
|devices= <!-- Devices tested against - e.g. ''devices=Nokia 6131 NFC, Nokia C7-00'') -->
 
|sdk= <!-- SDK(s) built and tested against (e.g. [http://linktosdkdownload/ Nokia Qt SDK 1.1]) -->
 
|sdk= <!-- SDK(s) built and tested against (e.g. [http://linktosdkdownload/ Nokia Qt SDK 1.1]) -->
|platform= <!-- Compatible platforms - e.g. Symbian^1 and later, Qt 4.6 and later -->
+
|platform= Java ME
 
|devicecompatability= <!-- Compatible devices e.g.: All* (must have internal GPS) -->
 
|devicecompatability= <!-- Compatible devices e.g.: All* (must have internal GPS) -->
 
|dependencies= <!-- Any other/external dependencies e.g.: Google Maps Api v1.0 -->  
 
|dependencies= <!-- Any other/external dependencies e.g.: Google Maps Api v1.0 -->  
Line 24: Line 24:
 
}}
 
}}
  
O seguinte código cria um ''Form'' com um ''Exclusive e um Multiple Choice Group''.
+
{{Abstract|Este artigo mostra como criar um ''Form'' com um ''Exclusive e um Multiple Choice Group''.}}
  
 
<code java>
 
<code java>

Latest revision as of 21:47, 7 February 2012

MultiMediaTile.png
Dados do artigo

Compatibilidade
Plataforma(s): Java ME

Artigo
Tradução:
Originado de Choice group
Última alteração feita por lpvalente em 07 Feb 2012

Este artigo mostra como criar um Form com um Exclusive e um Multiple Choice Group.

import javax.microedition.midlet.*;
import javax.microedition.lcdui.*;
 
public class Choice_Group extends MIDlet
{
Display display=Display.getDisplay(this);
 
public void startApp()
{
Form form = new Form("Form example");
//ChoiceGroup(label,type,elements,image)
ChoiceGroup CourseEXCL = new ChoiceGroup ("Exclusive choice",
Choice.EXCLUSIVE,new String[]
{"Python", "J2ME", "Symbian"}, null);
form.append(CourseEXCL);
ChoiceGroup CourseMULT = new ChoiceGroup ("Multiple choice",
Choice.MULTIPLE,new String[]
{"Python","J2ME", "Symbian"}, null);
form.append(CourseMULT);
display.setCurrent(form);
}
}

Choicegroup.png

This page was last modified on 7 February 2012, at 21:47.
117 page views in the last 30 days.
Nokia Developer aims to help you create apps and publish them so you can connect with users around the world.

京ICP备05048969号  © Copyright Nokia 2013 All rights reserved