I'm using a webview to allow users to login. Since the site requires a numeric password, I'd like the webview to pop up the numeric keypad, but also hide the input characters. I know that if you specify an HTML input type = "number" it will pop up the numeric keypad. In addition, if you specify the HTML input type = "password" it will hide the input characters.
However, in this case, I need to do both (ie. pop open the numeric keyboard AND hide the input characters). I know that if I were using a native screen, I could specify an EditText field of type "numeric password", however, I'm using a webview, so I don't believe this is available.
Any suggestions here?