Password Textfield displays value in T9 / Android
Hi,
I'm creating a password textfield with the following code:
var password = Titanium.UI.createTextField({
color: '#333333',
height: 35,
top: 165,
left: 20,
width: 250,
passwordMask: true,
clearOnEdit: true,
keyboardType: Titanium.UI.KEYBOARD_DEFAULT,
returnKeyType: Titanium.UI.RETURNKEY_DEFAULT,
borderStyle: Titanium.UI.INPUT_BORDERSTYLE_LINE,
autocapitalization: Titanium.UI.TEXT_AUTOCAPITALIZATION_NONE,
borderWidth: 1,
font: {fontSize: 12}
});
I've this issue in Android Emulator 2.1 / Mobile SDK 1.3.0 & 1.3.2, don't tested other versions.
While I type something in the password field, the value appears in the T9 auto complete area. How can I prevent this?
Thx