Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はこのコードを持っています
TextView.append(Html.fromHtml((getString(R.string.example)))); <string name="example"><b><font color="red">Example</font></b></string>
アプリを実行するとテキストが赤くならないからですか? 何が間違っている可能性がありますか?
これを試すことができます:
myTextView.setText(Html.fromHtml(getString(R.string.example)));
HTMLソースコードを追加する最良の方法strings.xmlは、使用することです
strings.xml
<![CDATA[html source code]]>
次に例を示します。
<string name="html"><![CDATA[<p>Text<p>]]></string>