0
是否可以對Appcelerator中的標籤文本應用透視?如果是這樣,怎麼樣?是否可以穿透Appcelerator中的標籤文本?
是否可以對Appcelerator中的標籤文本應用透視?如果是這樣,怎麼樣?是否可以穿透Appcelerator中的標籤文本?
不使用標籤,您可以使用屬性字符串。其中提供了相當多的功能。
爲刪除線的一個例子是這樣的:
var attr = Ti.UI.createAttributedString({
text: = "TEXT THAT NEEDS STRIKETHROUGH",
attributes: [
{
type: Ti.UI.ATTRIBUTE_STRIKETHROUGH_STYLE,
value: Ti.UI.ATTRIBUTE_UNDERLINE_STYLE_THICK, // Ignored by Android only displays a single line
range: [text.indexOf('hyperloop'), ('hyperloop').length]
}
]
});
實施例從Attributed String Guide which is on the Appcelerator Documentation
採取看看http://docs.appcelerator.com/platform/latest/#!/api/ Titanium.UI.AttributedString – developer82