android webview showing two edit fields
I am using web view in my activity. I am using an url to load the page. The page contains text field which takes user-name and password as input from user. When I click on nay of the field a corresponding small field i开发者_Python百科s shown overlapping the other.
Here I am attaching image how it looks when i click password field..
can anybody tell me how to solve this?
Thanks.
Duplicate question: Double text box showing on Android ICS Webview
Looks like you just have to add
-webkit-user-modify: read-write-plaintext-only;
To your css for input fields.
精彩评论