Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我尝试检查设备上是否安装了应用程序。在黑莓中,我可以做到
CodeModuleManager.getModuleHandle("applicationName");
如何在诺基亚设备上执行此操作?
您可以尝试以下代码:
String platform = System.getProperty("microedition.platform"); boolean isNokia = false; if (platform != null) { platform = platform.toLowerCase(); isNokia = platform.indexOf("nokia") >= 0; }
http://www.developer.nokia.com/Community/Wiki/System_property_microedition.platform_values_for_Symbian_devices