LoginSignup
10
9

More than 5 years have passed since last update.

AndroidのWebViewの持つコンテンツデータの保存・読み込み

Posted at

Android WebView
http://developer.android.com/reference/android/webkit/WebView.html

WebViewの表示データを保存

WebArchiveという、1ファイル形式に保存される。

mWebView.saveWebArchive(fileName);

保存したWebArchiveをWebViewに展開

WebArchiveの中身を文字列で第一引数に渡す。

mWebView.loadData(buf.toString(), "application/x-webarchive-xml", "utf-8");

10
9
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
10
9