实际上你不能在
这里尝试我所做的改变
你需要创建的提示颜色和字体view
,textfeild
并label
添加更改监听textfeild
器以显示或隐藏提示
var mh_view = Ti.UI.createView({
backgroundColor : "white",
height : "40dp",
top : "224dp",
left : "10dp",
right : "10dp",
width : Ti.UI.FILL
});
var mail_hint = Ti.UI.createLabel({
color : "#88817F",
font : {
fontFamily : customfont2,
fontSize : "15dp"
},
left : "47dp",
//top:"14dp",
text : "E-mail"
});
mh_view.add(mail_hint);
var mail = Ti.UI.createTextField({
backgroundImage : "/images/trans.png",
width : Ti.UI.FILL,
height : "40dp",
top : "224dp",
left : "10dp",
right : "10dp",
bubbleParent:false,
paddingLeft : "47dp"
// hintText:"E-mail"
});
var visible = true;
mail.addEventListener("change", function() {
if (visible) {
mail_hint.hide();
} else {
if ((mail.value).length == 0)
mail_hint.show();
}
visible = !visible;
});
希望它有帮助:)