I have such String:
<p><span style="color: rgb(230, 0, 0);">should be text color red</span></p><p><br></p><p><br></p><p><span style="background-color: rgb(230, 0, 0);">should be text color red background</span></p>
Is there a way to display it in TextView?
I wanted to do this like that:
contentTextView.setText(Html.fromHtml(presentation.content),TextView.BufferType.SPANNABLE)
Or is there any library for overcoming my issue?