如何在android中的webview中的imageview上设置图像

时间:2017-07-31 14:40:23

标签: android android-webview

尝试更改Web视图上的配置文件图像。 但是,当尝试更新的图像显示崩溃的图像。

webView.loadUrl("javascript: (function() {document.getElementById('SelectedImage').src='"+profilePath+"';}) ();");

1 个答案:

答案 0 :(得分:0)

如果profilePath是Uri对象,则需要从对象获取绝对路径。
使用File f = new File(profilePath.toString());