钛在ipad中仅显示数字键盘?

时间:2014-04-12 12:31:43

标签: ios ipad titanium titanium-mobile appcelerator-mobile

是否可以在ipad中仅显示带小数的数字键盘。

我已经使用了这段代码,我在iphone中得到了正确但在ipad中却没有?为什么?

这是我的文本域。

   var enterValuetextfield = Titanium.UI.createTextField({
    value : 'Enter Value',
    width : osname == 'ipad' ? '50%' : '90%',
    backgroundColor : '#32302D',
    color : 'white',
    borderRadius : 10,
    keyboardToolbarHeight : 30,
    paddingLeft:10,
    borderColor : "#AEB0B2",
    height : osname == 'ipad' ? 60 : 50,
    keyboardToolbar : [send],
    keyboardType : Ti.UI.KEYBOARD_DECIMAL_PAD,
});

1 个答案:

答案 0 :(得分:0)