Okay, I'm losing my mind over this one. I have a method in my program which parses HTML. I want to include the inline images, and I am under the impression that using the Html.fromHtml(string, Html.ImageGetter, Html.TagHandler) will allow this to happen.
Since Html.ImageGetter doesn't have an implementation, it's up to me to write one. However, since parsing URLs into Drawables requires network access, I can't do this on the main thread, so it must be an AsyncTask. I think.
However, when you pass the ImageGetter as a parameter to Html.fromHtml, it uses the getDrawable method that must be overridden. So there's no way to call the whole ImageGetter.execute deal that triggers the doInBackground method, and so there's no way to actually make this asynchronous.
Am I going about it completely wrong, or worse, is this impossible? Thanks
I've done something very similar (I think) to what you want to do. What I needed to do back then is parse the HTML and set it up back to TextView and I needed to use
Html.ImageGetter
as well and having the same problem on fetching image on the main thread.The steps that I did basically:
URLDrawable
ingetDrawable
method ofHtml.ImageGetter
onPostExecute
is called, I redraw the container of theSpanned
resultNow the code for URLDrawable is as follow
Simple enough, I just override
draw
so it would pick the Drawable that I set over there after AsyncTask finishes.The following class is the implementation of
Html.ImageGetter
and the one that fetches the image fromAsyncTask
and update the imageFinally, below is the sample program to demonstrate how things work:
Pretty nice. However, The type DefaultHttpClient is deprecated. Try this on fetch method:
if you using Picasso, change part of @momo code to
I got a bit confused, is the HTML you want to render static and merely for formatting, or is it dynamic and coming from the web? If you wanted the latter, that is, to render the HTML and retrieve the images, well it's gonna be a bit of a pain (suggestion - just use a WebView?).
Anyway, you would first have to run the AsyncTask to retrieve the initial HTML. You would then pass those results into the
Html.fromHtml()
with the custom implementation for theHtml.ImageGetter
class. Then in that implementation you'd have to kick off an individual AsyncTask to retrieve each of the images (you probably want to implement some caching).However, from reading the documentation (and I think I've seen some samples), it would seem to me that this is not what they meant the
Html.ImageGetter
for. I think it's meant for hardcoded HTML with references to internal drawables, but that's just my take.AsyncTask task = new AsyncTask (){