0

我得到了《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();

 }


}
4

1 回答 1

0

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

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

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

 }
于 2011-04-25T23:43:33.327 回答