I created a ListView program such that when a list item is clicked, it will open into a NewActivity. Now, i have made a string array to populate the ListView. The texts i want to display in the NewActivity has both italics and bold characters well formatted. I have converted the texts into HTML My question is; How can display this HTML texts in item array form. For Instance: HTML-Text-Here I have tried CDATA but there's no way i can fix it inside the code in the string.
This is what i tried that didn't work:
<item>"<![CDATA[ <p><span style="color: #ff0000;"><strong>The Love Pillar</strong></span></p>
<p>I Believe in love, the love of pure heart, sent..</p> ]]>"</item>
Here is my String.xml
<resources>
<string-array name="DescriptionLyrics">
<item>
</item>
<item>No.1 LyricsHere</item>
<item>No.2 LyricsHere</item>
<item>No.3 LyricsHere</item>
<item>No.4 LyricsHere</item>
</string-array>
</resources>