hii, I am making android app using alloy framework (windows 7) ...i want to now if it is possible to change the color of keyboard ....below is my code..
var pinTxt = Ti.UI.createTextField({ width : '40%', height : '70%', left : '30%', passwordMask : "true", maxLength : '6', hintText: 'Enter Your Pin', textAlign: 'center',
color : '#336699',
keyboardType : Titanium.UI.KEYBOARD_NUMBER_PAD,
returnKeyType : Titanium.UI.RETURNKEY_DEFAULT,
enableReturnKey : true
}); by using keyboardType : Titanium.UI.KEYBOARD_NUMBER_PAD , I am getting symbols along with numbers.. i want to keep only numbers 0-9 ...how i can do it??