How to launch an application from the browser in BlackBerry

后端 未结 1 913
余生分开走
余生分开走 2020-12-10 09:57

How do I launch the installed application on a device from the BlackBerry browser? My application details:

Without login credentials the user cannot have further acc

相关标签:
1条回答
  • 2020-12-10 10:23
    1. Give any unique link on your web page, for example www.example.com
    2. register httpfilter in your application,

      HttpFilterRegistry.registerFilter("www.example.com", "com.sample.filter");

    3. "com.sample.filter" is a package in which you have to create the Protocol.java class to handle the call back.

    For more information, check the "HTTPFilterDemo" sample included with the BlackBerry JDE.

    0 讨论(0)
提交回复
热议问题