I want to track that how many applications run in the particular time interval in blackberry curve 8900. Please let me know the API to program this?
views:
29answers:
1
+2
A:
try following code
ApplicationDescriptor[] ad = ApplicationManager.getApplicationManager()
.getVisibleApplications();
int numberOfApplication = ad.length;
Vivart
2010-02-03 04:32:24
Thanks for your reply. The functionality is "When my application sstarts I want to take the user input as time interval and then I'll show the number of application run in the given interval". Could you please suggest how can I get this functionality.
KPT
2010-02-04 07:40:02