我正在尝试在单击时显示一个弹出对话框,其中包含来自 web 视图的图像。我的问题是弹出对话框没有弹出,但它在 webview 中全屏打开或在浏览器中打开。是否可以在 webview 中弹出?我使用了以下网络设置,但事实证明是徒劳的。
WebSettings settings = wvcontent.getSettings();
settings.setSupportMultipleWindows(true);
settings.setPluginsEnabled(true);
settings.setAllowFileAccess(true);
settings.setJavaScriptEnabled(true);
这是我的 html 内容。
html_content =
"<strong>"+title+"</strong>"
+ " <br><br><img src='"+single_image+" width='300' height='211'>"
+ "<br> "
+ ""+ content + "<br>"
+ str
+ "<div id='popup' style='display:none'>"
+ "<a id='popup-close' href='' class='button'>"
+ "Fermer"
+ "</a><p><img id='image-placeholder' width='300px';height='250px' src=''>"
+ "<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.js'></script>"
+ "<script type='text/javascript'>
$(document).ready( function() {
$('.popup-open').click( function(e)"
+ "{$('#popup:visible').hide();
e.preventDefault();
$('#image-placeholder').attr('src', $(this).attr('href'));"
+ "$('#popup').fadeIn('fast');});
$('#popup-close').click( function(e) {e.preventDefault(); $('#popup').fadeOut('fast');});});"
+"</script>";
有人可以提供提示吗?