I receive chunks of HTML containing b,i,img,hx,ol,and li tags, which I need to render preferably without stripping tags. Additionally, I’d like to save those chunks so that the application doesn’t have to download it again.
What are my options here in terms of rendering? I consider WebView a rather bold decision; besides I’m not sure whether it can cache images.
Examples please.
The WebView has cache capabilities built in through the internal class WebSettings
Here’s a nice tutorial on how to implement it:
http://www.devahead.com/blog/2012/01/saving-the-android-webview-cache-on-the-sd-card/