Android's WebView has this saveWebArchive method since API level 11:
It can save entire websites as webarchives, which is great! But how do I get the downloaded contents back into a webview? I tried
webview.loadUrl(Uri.fromFile(mywebarchivefile)); But that only displays xml on the screen.
I try use WebArchiveReader who tell me can display the webArchive, but it just parse xml and i get the same result.
How can i do now?
You can load the saved archive into your webView by first reading the archive into a String and then calling: