Can any one show me, how to get starting time and ending time for all applications installed on Symbian device using symbian C++ or JavaME.
Asked
Active
Viewed 121 times
1 Answers
0
Nobody in the device keeps track of the starting and ending times.
If you want this info then you have poll it yourself - you must write a process that runs in the background and periodically polls the list of running applications. Then compare the list with previous run and log the new names and record stopping time for those that are no longer listed.

Riho
- 4,523
- 3
- 33
- 48
-
Then how to get list of running application..? – rkasula Jan 24 '13 at 12:07
-
Search for RWsSession::WindowGroupList , SWindowGroupInfo ,RApaLsSession::GetAppInfo – Riho Jan 24 '13 at 13:55
-
thanks for your help, should i have to implement this in Symbian c++ or j2me. Which way is best, Because i have Started application in JavaME and i have Requirement which Will record all Applications Starting time and Closing time which we have opened. this Events should be recorded By my Application. – rkasula Jan 25 '13 at 04:31
-
In that case you better start from "Hello world" and use Google to search these classes. – Riho Jan 25 '13 at 06:39
-
I don't know what you can do in JavaME. I think you might not have access to other processes as JAva is running in his own sandbox. – Riho Jan 25 '13 at 06:41
-
that's ok, Can you please say me how to implement in symbianc++, if you have any code then please send me.. – rkasula Jan 25 '13 at 06:50