如何在黑莓Application.There设置备用入口点为2的应用
- UI应用
- 后台应用程序:将在自动启动运行。
有一个黑莓知识中心文章关于这一点,我试过了,编码如下。 但在点击应用程序图标,没有任何反应。
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 (编辑)无效链接
任何机构可以帮助,我要去错在何处。