Choice group in Java ME (Português)
valderind4
(Talk | contribs) (Created page with 'Original em: Choice group O seguinte código cria um ''Form'' com um ''Exclusive e um Multiple Choice Group''. <code java> import javax.microedition.midlet.*; import java…') |
m (Lpvalente -) |
||
| (5 intermediate revisions by one user not shown) | |||
| Line 1: | Line 1: | ||
| − | + | [[Category:Java ME]][[Category:Lang-Portuguese]][[Category:Code Examples]][[Category:UI]] | |
| + | {{ArticleMetaData | ||
| + | |sourcecode= <!-- Link to example source code e.g. [[Media:The Code Example ZIP.zip]] --> | ||
| + | |installfile= <!-- Link to installation file (e.g. [[Media:The Installation File.sis]]) --> | ||
| + | |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]) --> | ||
| + | |platform= Java ME | ||
| + | |devicecompatability= <!-- Compatible devices e.g.: All* (must have internal GPS) --> | ||
| + | |dependencies= <!-- Any other/external dependencies e.g.: Google Maps Api v1.0 --> | ||
| + | |signing=<!-- Signing requirements - empty or one of: Self-Signed, DevCert, Manufacturer --> | ||
| + | |capabilities=<!-- Capabilities required by the article/code example (e.g. Location, NetworkServices. --> | ||
| + | |keywords= <!-- APIs, classes and methods (e.g. QSystemScreenSaver, QList, CBase --> | ||
| + | |id= <!-- Article Id (Knowledge base articles only) --> | ||
| + | |language=Lang-Portuguese | ||
| + | |translated-by=[[User:Valderind4]] | ||
| + | |translated-from-title=Choice group | ||
| + | |translated-from-id=50954 | ||
| + | |review-by=<!-- After re-review: [[User:username]] --> | ||
| + | |review-timestamp=<!-- After re-review: YYYYMMDD --> | ||
| + | |update-by=<!-- After significant update: [[User:username]]--> | ||
| + | |update-timestamp=<!-- After significant update: YYYYMMDD --> | ||
| + | |creationdate=20090905 | ||
| + | |author=[[User:Giaperrucci]] | ||
| + | }} | ||
| − | + | {{Abstract|Este artigo mostra como criar um ''Form'' com um ''Exclusive e um Multiple Choice Group''.}} | |
<code java> | <code java> | ||
| − | |||
import javax.microedition.midlet.*; | import javax.microedition.midlet.*; | ||
import javax.microedition.lcdui.*; | import javax.microedition.lcdui.*; | ||
| Line 32: | Line 54: | ||
[[Image:Choicegroup.png]] | [[Image:Choicegroup.png]] | ||
| − | + | <!-- Translation --> [[en:Choice group]] | |
| − | + | ||
| − | + | ||
| − | + | ||
| − | [[ | + | |
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);
}
}


