2014-01-11 51 views

回答

1

您必須將兩個CharacterStyles添加到該區域,例如,

textView.setText("blah blah", TextView.BufferType.SPANNABLE); 
Spannable spannable = (Spannable) textView; 
spannable.setSpan(new StrikethroughSpan(), 5, 8, Spanned.SPAN_INCLUSIVE_INCLUSIVE); 
spannable.setSpan(new ForegroundColorSpan(Color.parseColor("#ff0000")), 5, 8, Spanned.SPAN_INCLUSIVE_INCLUSIVE); 
+1

對於測試此代碼的人來說:在這種情況下,'ForegroundColorSpan'會同時改變文本的顏色和透視線的顏色。 – tommus