ビューにオンライン サイトを読み込む Webview アプリを作成しました。css および Java スクリプト ファイルをアプリ アセット ディクショナリに保存して、Web サイトのトラフィックと速度を節約したいと考えています。しかし、資産辞書から画像を読み込めません。誰かが私が間違っていることを教えてもらえますか?
mWebView.loadUrl("http://www.XXX.de/android/index.html");
サーバー上のhtmlファイルは次のとおりです。
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Hallo</title>
</head>
<body>
<center>hans hallo</center>
<center><img src="file:////Android/data/com.news/files/weltuntergang.png" height="200" width="200"></center>
</body>
</html>