Please advice the program (eclipse) to obtain operating system, version information and number of application in a blackberry device.
views:
162answers:
1
+5
A:
os version: DeviceInfo.getSoftwareVersion()
number of running Apps:
ApplicationDescriptor[] ad =
ApplicationManager.getApplicationManager().getVisibleApplications();
int numberOfRunningApps = ad.length;
Vivart
2010-01-26 07:40:23
Thank you. i am new to blackberry application development, could you please suggest any book that would help me developing blackberry program
Pankaj
2010-01-26 09:10:03
http://docs.blackberry.com/en/developers/deliverables/1076/development.pdfThis pdf is a good ebook for blackberry java app development.
Vivart
2010-01-26 12:31:35
This returns a String. Is there any documentation on the format of the string?
Casebash
2010-03-04 04:38:16