Choice group in Java ME (Português)
hamishwillee
(Talk | contribs) m (Hamishwillee - Bot addition of Template:ArticleMetaData) |
hamishwillee
(Talk | contribs) m (Hamishwillee - Bot update of Template:ArticleMetaData) |
||
| Line 12: | Line 12: | ||
|id= <!-- Article Id (Knowledge base articles only) --> | |id= <!-- Article Id (Knowledge base articles only) --> | ||
|language=Lang-Portuguese | |language=Lang-Portuguese | ||
| − | |translated-by= | + | |translated-by=[[User:Valderind4]] |
| − | |translated-from-title= | + | |translated-from-title=Choice group |
| − | |translated-from-id= | + | |translated-from-id=50954 |
|review-by=<!-- After re-review: [[User:username]] --> | |review-by=<!-- After re-review: [[User:username]] --> | ||
|review-timestamp=<!-- After re-review: YYYYMMDD --> | |review-timestamp=<!-- After re-review: YYYYMMDD --> | ||
| Line 20: | Line 20: | ||
|update-timestamp=<!-- After significant update: YYYYMMDD --> | |update-timestamp=<!-- After significant update: YYYYMMDD --> | ||
|creationdate=20090905 | |creationdate=20090905 | ||
| − | |author=[[User: | + | |author=[[User:Giaperrucci]] |
}}Original em: [[Choice group]] | }}Original em: [[Choice group]] | ||
| Line 59: | Line 59: | ||
[[Category:Code Examples]] | [[Category:Code Examples]] | ||
[[Category:UI]] | [[Category:UI]] | ||
| + | <!-- Translation --> [[en:Choice group]] | ||
Revision as of 10:28, 7 December 2011
Dados do artigo
Artigo
Tradução:
Originado de Choice group
Por valderind4
Última alteração feita por hamishwillee
em 07 Dec 2011
O seguinte código cria 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);
}
}


