Refactoring

This commit is contained in:
M66B
2020-04-24 14:00:53 +02:00
parent 5112bca339
commit d98ee009aa
4 changed files with 11 additions and 3 deletions

View File

@@ -1748,6 +1748,14 @@ public class HtmlHelper {
return false;
}
static Spanned fromDocument(@NonNull Document document) {
return fromDocument(document, null, null);
}
static Spanned fromDocument(@NonNull Document document, @Nullable Html.ImageGetter imageGetter, @Nullable Html.TagHandler tagHandler) {
return fromHtml(document.html(), imageGetter, null);
}
static Spanned fromHtml(@NonNull String html) {
return fromHtml(html, null, null);
}