我想創建一個後臺應用程序,它將在系統啓動時運行。當我手動(從功能區)運行它時,會出現屏幕,但是當我將它作爲啓動應用程序(描述符中的啓動時自動運行選項)後運行應用程序時,屏幕上不會顯示任何內容。我正在嘗試下面的代碼;黑莓應用程序:屏幕不顯示在自動運行模式
public class AppClass extends UiApplication {
public static void main(String[] args) {
AppClass theApp = new AppClass();
theApp.enterEventDispatcher();
}
public AppClass() {
pushScreen(new AppScreen());
}
}
而這是屏幕類;
public final class AppScreen extends MainScreen {
private LabelField label;
public AppScreen() {
setTitle("AppTitle");
label = new LabelField();
label.setText("Ready.");
add(label);
}
}
我期待它的UI應用程序,所以它的屏幕應該是可見無論是在啓動時自動運行或者手動運行。如果我需要做一些事情使其按預期工作,請指導我,我是BlackBerry開發的新手。 我在以下環境中開發;
- 黑莓JDE Eclipse插件1.5.0
- 的BlackBerry OS 4.5
謝謝先生。讓我試試看。 – Mudassir