I have recently updated my LG G2 to the latest version of KitKat and am noticing issues with textfields. Has anyone else noticed that the text typed in text fields is appearing above the actual text field and cut off? Here is a snippet of the code I am using if that helps, but it seems to be completely systematic.
var signupFirst = Titanium.UI.createTextField({ color:'#336699', top:133, width:135.5, left:22, height:40, hintText:'First Name', autocorrect: false, autocapitalization: Titanium.UI.TEXT_AUTOCAPITALIZATION_NONE, keyboardType:Titanium.UI.KEYBOARD_EMAIL, returnKeyType:Titanium.UI.RETURNKEY_NEXT, borderStyle:Titanium.UI.INPUT_BORDERSTYLE_ROUNDED }); if (Ti.Platform.osname == 'android'){ signupFirst.backgroundColor = "white"; }