I\'m working on an Android app (2.3.3) using Cordova (1.9.0), html5, javascript.
It\'s a language training tool so when users type their answers in textareas or inpu
I Just discovered it!, it's so easy!, just put into the input: name="password"
Just it!
try android:inputType="textNoSuggestions"
in you EditText
Up until at least Android 4.4 in cordova apps, the html5 attribute autocomplete="off" as described above does not have any effect. However on Android 6 the autocomplete="off" does work!
So it depends on the Android version, not the html.
(This is a cordova 5.1.1 android platform, in case anyone is wondering)