1 min readSep 9, 2019
Html.fromHtml(text)
is deprecated in Android N.
Google has created HtmlCompat
which can be used instead of the method below. Add this dependency implementation 'androidx.core:core:1.0.1’
to the build.gradle file of your app. Make sure you use the latest version of androidx.core:core
.
This allows you to use:
HtmlCompat.fromHtml(html, HtmlCompat.FROM_HTML_MODE_LEGACY);