I have a problem. I want to put in to the "TextView" html format text. I add the like below.
<string name="text"><![CDATA[<table><tr><th bgcolor= #FF0000>some text</th></tr> <tr><td bgcolor= #FF0000> some text</td></tr>]]></string>
and put it into the TextView as:
mInfoText.setText(Html.fromHtml(getString(R.string.text)));
but after run application, displayed text in TextView is not formatted.