2

这是我的代码,我想更改提示文本颜色,怎么办?

    "#email":{
    width: '70%',
    left:'13%',
    font:{
        fontSize:'20sp'
    },
    color: '#fff',
    hintText:'请输入手机号',
    borderColor:'transparent',
    bottom:'2%',
    //backgroundColor:'#d9d9d9',
    backgroundColor:'transparent',
    borderStyle:Ti.UI.INPUT_BORDERSTYLE_ROUNDED
}
4

6 回答 6

4

这也可以使用支持 Android 和 iOS 的 AttributedString 和 AttributedHintText 来完成。

var emailHintText = "Your email";

var attributedEmailHintText = Titanium.UI.createAttributedString({
		text : emailHintText,
		attributes : [{
			type : Ti.UI.ATTRIBUTE_FOREGROUND_COLOR,
			range : [0, emailHintText.length],
			value : '#88817F',
		}]
	});

$.email.setAttributedHintText(attributedEmailHintText);

除了颜色之外,AttributedString 还允许您向字符串/提示文本添加更多属性。在 Appcelerators 文档中阅读它:

AttributedString 前景色

Ti.UI.AttributedString

更新 15.08.16

在 Titanium SDK 5.4.0.GA 发布后,iOS 现在支持 TextFields 的属性hintTextColor和方法setHintTextColor。阅读适用于 iOS 的 Titanium SDK 发行说明中的​​更多信息

于 2016-05-14T11:31:35.400 回答
2

只需添加 hintTextColor 属性。

"#email":{
    width: '70%',
    left:'13%',
    font:{
        fontSize:'20sp'
    },
    color: '#fff',
    hintText:'Hint Text',
    hintTextColor : "#787878",
    borderColor:'transparent',
    backgroundColor:'transparent',
    borderStyle:Ti.UI.INPUT_BORDERSTYLE_ROUNDED
}
于 2016-10-20T11:03:44.023 回答
1

实际上你不能在
这里尝试我所做的改变
你需要创建的提示颜色和字体viewtextfeildlabel添加更改监听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;

});

希望它有帮助:)

于 2015-03-02T08:35:42.343 回答
0

您将必须为具有此类属性的 android 创建一个主题。你可以找到如何做到这一点http://docs.appcelerator.com/platform/latest/#!/guide/Android_Themes

他们有一个很好的文档

于 2015-07-16T11:10:04.477 回答
0

对于那些正在四处搜索的人,您可以使用“hintTextColor”来执行此操作,您可以将其用于文本字段,但我将其用于搜索栏,请参见下面的示例:

var searchInputBox = Titanium.UI.createSearchBar({
   backgroundColor:'#fff',
   hintTextColor:'#777',
   backgroundFocusedColor: "red",
   color: "#000",
   showCancel:true,
   height: 60,
   width: "94%",
   top: 100,
   left: "3%",
   hintText: "E.g. Bananas...",
   font: { color: "#fff"},
});

我在帖子中发现这里提到了这一点:https ://jira.appcelerator.org/browse/TIMOB-18433

于 2016-02-27T23:12:30.560 回答
-1

我认为,只需输入 color:'red' 它将显示您的文本以及红色的提示文本

于 2015-03-02T06:06:03.110 回答