I want to set a TextView with SpannableString which is from the method below:
Html.fromHtml(String source, Html.ImageGetter imageGetter, Html.TagHandler tagHandler)
But the ImageGetter here need to override the method below:
public abstract Drawable getDrawable (String source)
Because I need to get the drawable from the internet, I have to do it asynchronously and seems it is not.
How to make it work? Thanks.