Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have some fixed strings inside my strings.xml, something like:

<resources>
    <string name="somestring">
        <B>Title</B><BR/>
        Content
    </string>
</resources>

and in my layout I've got a TextView which I'd like to fill with the html-formatted string.

<TextView android:id="@+id/formattedtext"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/htmlstring"/>

if I do this, the content of formattedtext is just the content of somestring stripped of any html tags and thus unformatted.

I know that it is possible to set the formatted text programmatically with

.setText(Html.fromHtml(somestring));

because I use this in other parts of my program where it is working as expected.

To call this function I need an Activity, but at the moment my layout is just a simple more or less static view in plain XML and I'd prefer to leave it that way, to save me from the overhead of creating an Activity just to set some text.

Am I overlooking something obvious? Is it not possible at all? Any help or workarounds welcome!

Edit: Just tried some things and it seems that HTML formatting in xml has some restraints:

  • tags must be written lowercase

  • some tags which are mentioned here do not work, e.g. <br/> (it's possible to use \n instead)

share|improve this question
Long time now I know, but I was able to use <br> and not \n for a new line using the html for a TextView. – Tam Apr 19 at 2:10

2 Answers

up vote 136 down vote accepted

Just in case anybody finds this, there's a nicer alternative that's not documented (I tripped over it after searching for hours, and finally found it in the bug list for the Android SDK itself). You CAN include raw HTML in strings.xml, as long as you wrap it in

<![CDATA[ ...raw html... ]]>

Example:

<string name="nice_html">
<![CDATA[
<p>This is a html-formatted string with <b>bold</b> and <i>italic</i> text</p>
<p>This is another paragraph of the same string.</p>
]]>
</string>

Then, in your code:

TextView foo = (TextView)findViewById(R.id.foo);
foo.setText(Html.fromHtml(getString(R.string.nice_html)));

IMHO, this is several orders of magnitude nicer to work with :-)

share|improve this answer
11  
Just to add, you can also backslash-escape apostrophes/single-quotes inside the CDATA block, so you can have things like <b>can\'t</b> instead of the infinitely-uglier <b>can&apos;t</b> – Bitbang3r Nov 6 '11 at 17:28
1  
+1 perfect answer – vnshetty Jun 20 '12 at 6:33
great answer.. thank you! – TheMan May 15 at 9:41

Escape your HTML tags ...

<resources>
    <string name="somestring">
        &lt;B&gt;Title&lt;/B&gt;&lt;BR/&gt;
        Content
    </string>
</resources>
share|improve this answer
That is what the docs say: developer.android.com/intl/zh-TW/guide/topics/resources/… but is that enough for the TextView to show HTML? – Macarse Jul 13 '10 at 13:19
that's how i do it ... – ekawas Jul 13 '10 at 14:39
I have tested this, and if you use it from the java source code, it's fine. But if you associate your text directly from layout XML, the tags are shown in the text view (e.g. <B>Title</B> ... ) – ZoltanF Aug 28 '11 at 9:55
To show the text in a view, use the class [developer.android.com/reference/android/text/Html.html], specifically fromHTML(). – ekawas Aug 30 '11 at 13:11
@ZoltanF is right, using android:text="" from a layout with the HTML will show the tags in the string. – Andrew Mar 25 at 14:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.