Skip to content

Instantly share code, notes, and snippets.

@Cutta
Created December 27, 2017 11:38
Show Gist options
  • Save Cutta/b5224ce458521155ee9d99538d769e86 to your computer and use it in GitHub Desktop.
Save Cutta/b5224ce458521155ee9d99538d769e86 to your computer and use it in GitHub Desktop.
fun String.toSpanned(): Spanned {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
return Html.fromHtml(this, Html.FROM_HTML_MODE_LEGACY)
} else {
@Suppress("DEPRECATION")
return Html.fromHtml(this)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment