How to store Android keyboard activity like any text type by other app and send it across Internet in background?

876 views Asked by At

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?

2

There are 2 answers

1
Dev Null On

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.

3
sahu On

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.