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:

Why is it giving me italic text instead of bold?