私はウェブビューを配置しました、そしてこのコードで私はそれをローカルhtmlで使用します。ここで、このhtmlに画像を追加したいのですが、その画像をどこに配置するかわかりません。何かアドバイス?
String html = "<html><body>Hello, World!</body></html>";
String mime = "text/html";
String encoding = "utf-8";
WebView myWebView = (WebView)this.findViewById(R.id.myWebView);
myWebView.getSettings().setJavaScriptEnabled(true);
myWebView.loadDataWithBaseURL(null, html, mime, encoding, null);