是否可以从 Blackberry 中的本机应用程序调用我的应用程序?

发布于 2024-11-16 00:43:55 字数 65 浏览 1 评论 0原文

我想知道是否可以从本机应用程序调用我的应用程序。如黑莓中的提醒、电话等。 是的,那么请给我一些关于它如何可能的描述。

I want to know that is it possible to call my application from the native app. like Reminder,phone call etc. in Blackberry.
It yes then please give me sort description about how it is possible.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

水染的天色ゝ 2024-11-23 00:43:55

是的,这是可能的。
您可以在本机应用程序中添加菜单项,并在运行方法中传递参数来执行您的任务。

要添加菜单项,请使用它。

 AdressBookMenuItem menuItem = new AdressBookMenuItem(0);
    ApplicationMenuItemRepository repository =ApplicationMenuItemRepository.getInstance();
    long id=ApplicationMenuItemRepository.MENUITEM_CALENDAR;
    repository.addMenuItem(id2,menuItem);

并打开您的应用程序

   class AdressBookMenuItem extends ApplicationMenuItem {

Message mess;

public AdressBookMenuItem(int order) {
    super(order);
}

public AdressBookMenuItem(Object context, int order) {
    super(context, order);
}
public Object run(Object mess) 
{
    ApplicationManager.getApplicationManager().launch(appCodName+"?admin");
 }

public String toString() {
    return "MENU Item name";
}
   }

yes ,it is possible.
you can add your menu item in native application,and on run method pass the argument to perform your task.

to add menu item use it.

 AdressBookMenuItem menuItem = new AdressBookMenuItem(0);
    ApplicationMenuItemRepository repository =ApplicationMenuItemRepository.getInstance();
    long id=ApplicationMenuItemRepository.MENUITEM_CALENDAR;
    repository.addMenuItem(id2,menuItem);

and for open your app

   class AdressBookMenuItem extends ApplicationMenuItem {

Message mess;

public AdressBookMenuItem(int order) {
    super(order);
}

public AdressBookMenuItem(Object context, int order) {
    super(context, order);
}
public Object run(Object mess) 
{
    ApplicationManager.getApplicationManager().launch(appCodName+"?admin");
 }

public String toString() {
    return "MENU Item name";
}
   }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文