试着写一个hello world CLDC blackberry程序

时间:2011-04-25 22:33:30

标签: blackberry java-me cldc

我得到了Advance Black Berry 6 Development这本书。 我能够使midlet示例工作,但不是CLDC程序的第一个示例。它似乎永远不会到达代码,当我运行应用程序时,我得到一个空白的白色屏幕。 我试图提出一个断点,但它从未停止过。

这是代码

package test.org;
import net.rim.device.api.ui.UiApplication;
import net.rim.device.api.ui.component.*;
import net.rim.device.api.ui.container.*;

public class cHelloUniverses extends  UiApplication{


    public static void main(String[] args)
     {
         (new cHelloUniverses()).start();
     }


    public void start()
 {
     MainScreen main = new MainScreen();
     LabelField label= new LabelField("Hello Ted");
     main.add(label);

     UiApplication app = UiApplication.getUiApplication();
     app.pushScreen(main);
     app.enterEventDispatcher();

 }


}

1 个答案:

答案 0 :(得分:0)

用这个替换你的start()方法:

public void start()
 {
     MainScreen main = new MainScreen();
     LabelField label= new LabelField("Hello Ted");
     main.add(label);

     this.pushScreen(main);
     this.enterEventDispatcher();

 }