2016-01-15 59 views

回答

5

不使用標籤,您可以使用屬性字符串。其中提供了相當多的功能。

爲刪除線的一個例子是這樣的:

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

相關問題