我是黑莓应用程序的新手。
现在尝试使用eclipse在黑莓中创建一个计算器:
所以我添加了一个按钮(ButtonField
),我的第一个目标是按下这个按钮时我想显示
“嗨..现在您可以尝试使用文本字段。 ”
在这里我把我的代码,请通过它。
启动器.java
public class Launcher extends UiApplication {
public static void main(String[] args) {
Launcher theApp = new Launcher();
theApp.enterEventDispatcher();
}
private Launcher()
{
this.pushScreen(new MainScrn());
}
}
主屏幕.java
public class MainScrn extends MainScreen implements FieldChangeListener {
public MainScrn() {
LabelField lf_hello = new LabelField();
lf_hello.setText("Hello, World!");
lf_hello.setBackground(BackgroundFactory.createSolidBackground(124));
ButtonField mySubmitButton = new ButtonField("clickMe");
mySubmitButton.setChangeListener(this);
this.add(lf_hello);
this.add(mySubmitButton);
}
public void fieldChanged(Field field, int context) {
System.out.println("hi.. now you can try with text field");
}
}
你好这是怎么回事。? 请帮忙..这对你来说很简单,但我现在不行吗?