How To Get Sequence Of User Interaction With Android Device?
After many sites searched and googling, I can't find anything for my problem. I want to capture the sequence of user interactions on android device. Starting from when the devic
Solution 1:
This is not possible, except perhaps via modified firmware, for obvious security and privacy reasons.
Solution 2:
I am not sure at what extent it will help you to achive your goal but the best way I know is that:
You need to implement
Broadcastreceiver
for every action like actionandroid:name="android.intent.action.BOOT_COMPLETED"
when your device starts, similarly you need to use all the action which will notify you in your receiver.You can run a service where you can check which app is running for your record. For this you need to fetch installed app list.
Post a Comment for "How To Get Sequence Of User Interaction With Android Device?"