Skip to content

Instantly share code, notes, and snippets.

View giorgioprovenzale's full-sized avatar
🖖

Giorgio Provenzale giorgioprovenzale

🖖
View GitHub Profile
@giorgioprovenzale
giorgioprovenzale / utils.java
Created March 20, 2018 12:14
Android - Utils - Format text with HTML
@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);
}
}