我已经放置了一个 webview,并通过此代码将它与本地 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);