获取黑莓上安装的所有应用程序的列表(Get a list of all installed appl

2019-07-04 14:05发布

是否有可能得到安装在黑莓的所有应用程序的列表,类似的应用程序列表,当你进入你的设置。

我可以使用以下,但我不知道是否有可能获取不一定运行,但安装的应用程序列表中的所有可见的应用程序的列表,

ApplicationDescriptor[] descriptors = 
    ApplicationManager.getApplicationManager().getVisibleApplications();

Answer 1:

您可以使用:

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

为了得到句柄的数组到所有模块,并且:

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

要获得与模块相关ApplicationDescriptors。 你必须弄清楚哪些模块库,哪些是应用程序。



文章来源: Get a list of all installed applications on Blackberry