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.
たとえば、R.java ファイルで「public static int red=0x7f06000c;」などの色を定義したとします。
HTMLコードに色を適用するにはどうすればよいですか?
私は試した
Html.fromHtml("<font color= '" + R.color.red + "'> some text </font>)
しかし、返された色は黒です...
私の質問に答えてくれてありがとう!
これを試して:
Html.fromHtml("<font color=" + getResources().getColor(R.color.red) + "> some text </font>");