如何在黑莓Application.There設置備用入口點將爲2應用如何在黑莓應用程序中設置備用入口點?
- UI應用
- 後臺應用程序:將在自動啓動運行。
關於這個,有一個blackberry knowledge center article,我試過了,編碼如下。但是在點擊應用程序圖標時,沒有任何迴應。
class EntryPointForApplication extends UiApplication {
public EntryPointForApplication() {
GUIApplication scr = new GUIApplication();
pushScreen(scr);
}
public static void main(String[] args) {
if (args != null && args.length > 0 && args[0].equals("background1")){
// Keep this instance around for rendering
// Notification dialogs.
BackgroundApplication backApp=new BackgroundApplication();
backApp.enterEventDispatcher();
backApp.setupBackgroundApplication();
} else {
// Start a new app instance for GUI operations.
EntryPointForApplication application = new EntryPointForApplication();
application.enterEventDispatcher();
}
}
}
類UI應用
class GUIApplication extends MainScreen {
public GUIApplication(){
add(new LabelField("Hello World"));
}
}
後臺應用
class BackgroundApplication extends Application {
public BackgroundApplication() {
// TODO Auto-generated constructor stub
}
public void setupBackgroundApplication(){
}
}
我配置Blackberry_App_Discriptor.xml根據本(edit) bad-link
任何機構的幫助下,我在哪裏走錯了。
順便說一句,在底部你的第二個鏈接進入完全相同的URL作爲第一個鏈接 – 2010-10-13 05:57:09