criar greve de cor diferente através

Eu estou tentando criar textview com cor de texto como preto e strikthrough como vermelho, tentei usar html mas parece não funcionar

<code>String styledText = "<span style='color:red;text-decoration:line-through'><span style='color:black'>TEXT</span></span>";    
myText.setText(Html.fromHtml(styledText));
</code>

Eu também tentei abaixo do método, mas não sei como definir cores diferentes para rasurado

<code>myText.setPaintFlags(myText.getPaintFlags() | Paint.STRIKE_THRU_TEXT_FLAG);
</code>

questionAnswers(3)

yourAnswerToTheQuestion