我想创建一个像上面一样的文本字段,它有像边框一样的阴影,在焦点上它必须用橙色突出显示。请任何人帮我如何做到这一点我是钛的新手
我在textfield使用了以下代码,我目前正在使用blackborder
var txt = Titanium.UI.createTextField({
color : '#006881',
borderStyle : Titanium.UI.INPUT_BORDERSTYLE_ROUNDED,
borderColor:'#000000',
borderRadius:5,
borderWidth:2,
top : 10,
left : 10,
right : 10,
font : txtfont_text,
});
答案 0 :(得分:1)
创建一个视图添加Textfield里面 (宽度:Ti.UI.FILL,高度:Ti.UI.FILL,顶端:2)
在textfield.addEventListenr('focus')中更改视图的backgroundColor,并在'blur'监听器中再次更新backgroundColor。