主屏幕上的Blackberry应用程序指示器单击处理程序

时间:2011-02-18 17:30:06

标签: blackberry notifications messages

我正在创建一个应用程序,它在BlackBerry主屏幕的状态栏上有一个通知图标。我想在点击此通知图标时启动我的应用程序。

我可以使用ApplicationIndicator在状态栏中创建通知图标,但我无法注册单击处理程序来启动应用程序。

1 个答案:

答案 0 :(得分:0)

在Blackberry OS 6.0中,我们有一个新的API,可用于从通知栏启动应用程序。这是一个例子:

try {
    DemoMessage msg = new DemoMessage();
    ApplicationDescriptor daemonDescr = ApplicationDescriptor.currentApplicationDescriptor();
    ApplicationDescriptor mainDescr = new ApplicationDescriptor(daemonDescr, "MyAppName", new String[] {});

    // Get existing messages from storage and register them in folders
    ApplicationFolderIntegrationConfig inboxIntegration = new ApplicationFolderIntegrationConfig(true, true, mainDescr);

    ApplicationMessageFolder folder = ApplicationMessageFolderRegistry.getInstance().registerFolder(
        APPLICATION_ID, "MyApplictionFolderName", new ReadableListImpl(),inboxIntegration);
    folder.fireElementAdded(msg);
} catch (IllegalArgumentException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
} catch (NullPointerException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
}

其中DemoMessageReadableListimpl是来自Blackberry 6.0 MessageListDemo示例应用的类。

供参考,另请参阅此相关问题:Opening application from notification bar in blackberry