1

I want to build an password manager for Android. The Problem is I don't know how to get it to fill login forms of third party applications. I know this is working, because LastPass does exactly what I want.

I don't want a complete solution ;) I just need a point to start. Secondly I don't want to replace the system keyboard like Keepass2Android does. I googled nearly two days about this but I can't get the right keywords to find a starting point.

So the questions are:

  • How do I detect login forms on the active activity?
  • How do I paste the credentials to this inputs?
semptic
  • 645
  • 4
  • 15

1 Answers1

0

If you don't know the id from a TextView then you need to use getIdentifier() function. You can find a potential usage here. When you will get the id from your TextView you can paste a text in your form with something like this

instantFromTextView.setText("your creds");

I hope to help!

Community
  • 1
  • 1
Eleftherios
  • 186
  • 1
  • 13