Get a list of all installed applications on Blackberry

你说的曾经没有我的故事 提交于 2019-12-01 12:18:40
Richard

You can use:

net.rim.device.api.system.CodeModuleManager.getModuleHandles()

To get an array of handles into all modules, and:

net.rim.device.api.system.CodeModuleManager
    .getApplicationDescriptors(int moduleHandle)

To get ApplicationDescriptors associated with the module. You will have to sort out which modules are libraries and which are applications.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!