2

I would like to know how to store other application's keyboard activity like capture passwords or userid as the user types and send it across Internet? Is there any mechanism built into Android that would do that?

Jonathan Leffler
  • 730,956
  • 141
  • 904
  • 1,278
Sanjay Bhalani
  • 329
  • 1
  • 18

2 Answers2

2

Another methods are also there to identify a user is typing For example if you implement TextWatcher you can get it the facility like when user type somethings you can call any webservice to get notified.

For TextWatcher follow the link :How to use the TextWatcher class in Android?

For Web Service implement your own or use third party.

Thanks hope this will help you.

Community
  • 1
  • 1
sahu
  • 1,188
  • 10
  • 19
1

What you're referring to is known as a remote keylogger. It would be highly unlikely for Google, or the maintainers of Android operating systems to implement any malicious code into their work.

If you're referring to purchasing items from the App store and using them, then it's possible, but I have not heard of it. App store apps found to be malicious in nature would be quickly outed and their producer(s) would be outed.

Dev Null
  • 21
  • 1
  • 1
    no i just need to capture any application keyboard activity like some one try to type message on whats app i try to developed broadcast receiver but it work only if our app is open – Sanjay Bhalani Jun 10 '15 at 05:23