4

我需要删除我的文本字段的边框。Titanium 文本字段的默认边框样式为Titanium.UI.INPUT_BORDERSTYLE_NONE. 但它默认仅适用于 iPhone。我也打开了borderColor = 'white',这是我的背景颜色。但不起作用。有什么解决办法吗?

4

1 回答 1

9

您只需设置backgroundColortextField 的属性即可。您可以将其设置whitetransparent

在此处输入图像描述

这是一个例子

var txtSome = Ti.UI.createTextField({
   hintText : 'My hint text',
   width     : '75%',
   top   : '5%',
   backgroundColor : 'transparent'//or backgroundColor : 'white'
});

我知道为时已晚。但会帮助别人。

于 2014-01-14T18:53:00.813 回答