I am facing a weird issue:

My source string for Html.fromHtml() is as follows:

<strong>Terrible experience with Nikko hotel</strong><br />It was not easy to cancel booking. I called to cancel books, but they still chraged us two full days. A reason was we were late ten minutes in calling to cancel. They explained us very kindly that I can only cancel the first day. But they charged after then.\nSick."

which is retrieved from a json response

Now, when I display it using setText as follows:

commentbox.setText(Html.fromHtml(cmnt.getString("cmnt")));

but the output which i see is as follows:

enter image description here

Why is it giving me italic text instead of bold?

link|improve this question

67% accept rate
Try to increase the width of the textview so your strong text to fit in 1 line and see what's happening :) – Arkde Nov 25 '11 at 7:31
width is wrapcontent, that shouldnt be an issue , its happening at other places too :( – android_hungry Nov 25 '11 at 7:34
hm... remove the strong and replace it with <b> tags and see what's happening :) – Arkde Nov 25 '11 at 7:38
1  
sadly , its a json response from a server, can try replacing <strong> with <b> or <em>..thanks – android_hungry Nov 25 '11 at 7:41
feedback

1 Answer

up vote 2 down vote accepted

This can be a LIMITATION as described here:

the Html.fromHtml() method in Android that creates a SpannedString from HTML source flips <em> and <strong> tags, so what you might be used to seeing in boldface turns into italics and vice-versa. This should only be an issue if you are displayng the generated HTML in a TextView — WebView in particular should behave more normally.

link|improve this answer
1  
i hv found an issue here also you can use <b> instead – hanry Nov 25 '11 at 7:42
thanks, wil hav to check for tags and then reverse it before using fromHtml() – android_hungry Nov 25 '11 at 7:46
+1, for nice conclusion. – user370305 Nov 25 '11 at 7:49
feedback

Your Answer

 
or
required, but never shown

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