I'm trying load an image into an image view. The source of the image is a JSON object and as formatted like a html image i.e image tags. I've looked at potential solutions like Picasso and universal image loader but I don't believe they fit in my desired solution. I've also tried solutions which download the image and then load it into the view but because of the way that the source is formatted, the image didn't show for me. How do i clean the source of the image and load it into my image view?
My JSON is structured like this:
{"entries":[{"introtext":"<p><img src='something.jpg'/></p>"}]}