Created
December 27, 2017 11:38
-
-
Save Cutta/b5224ce458521155ee9d99538d769e86 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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