我有一个字符串,我必须使用 TextView
来显示。让我们说字符串是:
String stringToBeShown = "Baby wants to cry".
使用我想要的TextView
得到的结果是:
我尝试了一些 HTML
技巧,但无法使其发挥作用。喜欢:
String stringToBeShown = "Baby wants to <font color='#EE0000'>cry</font>".
t.setText(Html.fromHtml(stringToBeShown));
除了该字符串中的 spaces
之外,我想为每个单词提供一些背景知识。是否有任何可以实现的东西。