Created
March 20, 2018 12:14
-
-
Save giorgioprovenzale/784d2c2faaa98f2bf8924e4514948954 to your computer and use it in GitHub Desktop.
Android - Utils - Format text with HTML
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
@SuppressWarnings("deprecation") | |
public static Spanned fromHtml(String html){ | |
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) { | |
return Html.fromHtml(html, Html.FROM_HTML_MODE_LEGACY); | |
} else { | |
return Html.fromHtml(html); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment