J2me手机ui里的textbox代码有一句看不懂,帮忙看看

packagetextbox;importjavax.microedition.lcdui.*;importjavax.microedition.midlet.MIDle... package textbox;

import javax.microedition.lcdui.*;
import javax.microedition.midlet.MIDlet;

public class TextBoxDemo extends MIDlet implements CommandListener {
private static final Command CMD_EXIT = new Command("Exit", Command.EXIT, 1);
private static final Command CMD_BACK = new Command("Back", Command.BACK, 1);
private static final Command CMD_SHOW = new Command("Show", Command.SCREEN, 1);

static final String[] textBoxLabels =
{ "Any Character", "E-Mail", "Number", "Decimal", "Phone", "Url" };

static final int[] textBoxTypes =
{
TextField.ANY, TextField.EMAILADDR, TextField.NUMERIC, TextField.DECIMAL,
TextField.PHONENUMBER, TextField.URL
};
private Display display;
private ChoiceGroup types;
private ChoiceGroup options;
private Form mainForm;
private boolean firstTime;

public TextBoxDemo() {
display = Display.getDisplay(this);
firstTime = true;
}

protected void startApp() {
if (firstTime) {
mainForm = new Form("Select a Text Box Type");
mainForm.append("Select a text box type");
Image[] imageArray = null;

types = new ChoiceGroup("Choose type", Choice.EXCLUSIVE, textBoxLabels, imageArray);
mainForm.append(types);

// advanced options
String[] optionStrings = { "As Password", "Show Ticker" };
options = new ChoiceGroup("Options", Choice.MULTIPLE, optionStrings, null);
mainForm.append(options);
mainForm.addCommand(CMD_SHOW);
mainForm.addCommand(CMD_EXIT);
mainForm.setCommandListener(this);
firstTime = false;
}

display.setCurrent(mainForm);
}

protected void destroyApp(boolean unconditional) {
}

protected void pauseApp() {
}

public void commandAction(Command c, Displayable d) {
if (c == CMD_EXIT) {
destroyApp(false);
notifyDestroyed();
} else if (c == CMD_SHOW) {
Image[] imageArray = null;
int index = types.getSelectedIndex();
String title = textBoxLabels[index];
int choiceType = textBoxTypes[index];
boolean[] flags = new boolean[2];
options.getSelectedFlags(flags);

if (flags[0]) {
choiceType |= TextField.PASSWORD;//功能是实现choiceType以**形式表示,请问是怎么实现的?
}

TextBox textBox = new TextBox(title, "", 50, choiceType);

if (flags[1]) {
textBox.setTicker(new Ticker("TextBox: " + title));
}

textBox.addCommand(CMD_BACK);
textBox.setCommandListener(this);
display.setCurrent(textBox);
} else if (c == CMD_BACK) {
display.setCurrent(mainForm);
}
}
}
我用中文注释了的啊....在后面一点
if (flags[0]) {
choiceType |= TextField.PASSWORD;//功能是实现choiceType以**形式表示,请问是怎么实现的?
}
展开
 我来答
偶系来打酱油滴
2009-07-14
知道答主
回答量:1
采纳率:0%
帮助的人:0
展开全部
其实你们都错了......
ZESTRON
2024-09-04 广告
在Dr. O.K. Wack Chemie GmbH,我们高度重视ZESTRON的表界面分析技术。该技术通过深入研究材料表面与界面的性质,为提升产品质量与可靠性提供了有力支持。ZESTRON的表界面分析不仅涵盖了相变化、化学反应、吸附与解吸... 点击进入详情页
本回答由ZESTRON提供
匿名用户
2009-07-10
展开全部
choiceType = TextField.PASSWORD;

TextBox textBox = new TextBox(title, "", 50, choiceType);

TextBox构造方法的四个参数依次是文本框的标题,内容,字符长度和类型。 TextField.PASSWORD是密码类型,所以显示出来就是******了
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
袁振云
2009-07-14 · TA获得超过254个赞
知道小有建树答主
回答量:320
采纳率:0%
帮助的人:172万
展开全部
可以使用TextField的 PASSWORD方法设置显示*
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
zhangxinjin
2009-07-09
知道答主
回答量:27
采纳率:0%
帮助的人:17.4万
展开全部
你说哪句看不懂?要指出来。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式