Q: Is this possible to save html page with images, css, and other resources in android?
I know it's possible to save page archive in webView, however I need to store page without viewing it in background (i was trying call saveWebArchive in asynctask and get RuntimeException: Can't create handler inside thread that has not called Looper.prepare()).
I was thinking about downloading page by DefaultHttpClient, then parsing html resources urls, downloading images, etc. and then replace urls in html by downloaded resources paths, but in seems very complicated for me.