Choice group in Java ME (Português)
hamishwillee
(Talk | contribs) m (Hamishwillee - Minor tidy) |
m (Lpvalente -) |
||
| (One intermediate revision by one user not shown) | |||
| 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= | + | |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: | ||
}} | }} | ||
| − | + | {{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
Dados do artigo
Compatibilidade
Plataforma(s): Java ME
Artigo
Tradução:
Originado de Choice group
Por valderind4
Ú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);
}
}


