1
我想訪問我當前正在運行的應用程序applicationDescriptor對象。我想這樣我就可以得到當前的版本號,並且在初始屏幕上有一個標題,例如「MyApp Version xxx」,其中我從xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx我找到的一種方法是使用:Blackberry - 獲取當前應用程序的ApplicationDescriptor對象
ApplicationManager manager = ApplicationManager.getApplicationManager();
ApplicationDescriptor[] descriptors = manager.getVisibleApplications();
//Loop round descriptors then use...
ApplicationDescriptor myApp = manager.getProcessId(descriptors[x]);
使用循環來檢查所有的應用程序似乎有點長期纏繞我,我希望有一個更簡單的路線。
感謝