Android add image to webview from a drawable

前端 未结 4 1302
梦毁少年i
梦毁少年i 2020-12-01 06:29

I\'d like something:

s=\"




\";

How can I do this?

4条回答
  •  既然无缘
    2020-12-01 07:11

    You can only do such a thing if our image is inside your /assets folder. Also, you must load your html with a baseUrl that's inside your assets folder.

    You can use WebView.loadUrl() or WebView.loadDataWithBaseURL():

    webView.loadUrl("file:///android_asset/file.html");

    or

    webView.loadDataWithBaseURL("file:///android_asset/", "", "text/html", "utf-8", null);
    

    (file.jpg should be inside your assets folder)

提交回复
热议问题