I am using Html.fromHtml
to view html in a TextView
.
Spanned result = Html.fromHtml(mNews.getTitle());
...
...
mNewsTitle.setText(result);
But Html.fromHtml
is now deprecated in Android N+
What/How do I find the new way of doing this?
I am using Html.fromHtml
to view html in a TextView
.
Spanned result = Html.fromHtml(mNews.getTitle());
...
...
mNewsTitle.setText(result);
But Html.fromHtml
is now deprecated in Android N+
What/How do I find the new way of doing this?