I am using webservice in my android application. In my webservice result I get a HTML formatted String as result.
Assume this is my web service result:
Books on Chennai:\n
I am using Html.fromHtml(String) to add this to my TextView. But I am not getting new line feature. I displays it as a paragraph.
Books on Chennai: Madras Discovered, Tales of Old and New Madras, Madras (1992) by S. Muthiah Madras – its Past and its Present (1995) by S. Muthiah Madras – its Yesterdays and Todays and Tomorrows by S. Muthiah At Home in Madras (1989) by S. Muthiah The Spirit of Chepauk (1998) by S. Muthiah The Story Of Fort St. George (1945) by Col. D.M. ReidFiction set in Chennai Kalyani’s Husband by S.Y. Krishnaswamy Chasing Rainbows in Chennai (Chasing Rainbows in Chennai), (2003) by Colin Todhunter In Old Madras (1914) by Bithia Mary Crocker
How can I present this data in an easily readable and understandable way?
` was the first thing I tried, and it didn't work. I guess fromHTML really doesn't like self-closing tags. – BlueMonkMN Feb 10 '18 at 21:07
It is not working. But working with
– Dipin P J Nov 03 '21 at 19:23