Skip to content Skip to sidebar Skip to footer

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:

  1. You need to implement Broadcastreceiver for every action like action android: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.

  2. 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?"