MudPHP制作中。。。入口地址:fy3.tiandiyoyo.com

获取设备内安装的程序清单

3863 0 5.0

RIM API里提供了CodeModuleManager,通过CodeModuleManager我们可以取得安装程序的作者,大小,名称,版本号等等信息。 int apps[] = CodeModuleManager.getModuleHandles(); for (int i = 0; i < handles.length; i++) { ...

[转]How to – Create a custom layout manager for a screen

3818 0 5.0

Procedure You can create your own custom layout manager by extending the net.rim.device.api.ui.Manager class and customizing it to fit your needs. Custom layout managers enable you to customize the placement of fields on the screen and customize navi...