Recording user actions on Android

Is there any way to record user actions in android. For example, if someone clicks a button or enters text, how to identify these actions. Is this possible in the emulator at least. Any help on this would be appreciated.

Thank,

+3
source share
2 answers

Each performance has event listeners. You can browse the documentation and find which listeners are supported by each view. For example, you can register onClickListenerin your view, after which you will receive an event, and you will be able to process it. You should check the documentation at developer.android.com for more information. Good luck

+3
source

, . onUserInteraction() , , . , ( ), .

+2

All Articles