I would like to know if there are other alternatives for mediocre EditText password input for Android. Is there an API, or Open Source code that can be integrated to my app that is similar to the Lock Screen pattern unlocking? Where maybe the Intent returns a hash, number, string, or whatever that represents the Pattern input from the user.
I was thinking of something like.
- My Code calls intent.
- A similar to Lockscreen Pattern thingy shows
- User inputs his pattern
- Intent returns something that represents that patter.
- I do away with the returned data.
Why do i want/need this? In my app, I need an input password from the user (Not to be used for logging in or something, used for encryption). And i thought it is tedious for the user to type. And it would be easier for those swipe lock patterns.