android检测图片点击内部webview?

时间:2014-01-28 15:11:29

标签: android webview

我想在<img内检测到webview点击?如果是这样的话?我需要一个例子plz

据我所知,我可以使用<a href

webview内点击WebViewClient

但是我需要检测<img点击而不使用java脚本可以吗?

这是我的代码:

WebView webview = ( WebView ) findViewById(R.id.wv);

WebSettings settings = webview.getSettings();
settings.setUseWideViewPort(true);
settings.setLoadsImagesAutomatically(true); 


String summary = "<html><body>You scored <fieldset><legend>adfadf</legend>"
                    + " <a href='http://192.168.1.100/1.jpg'><img src='http://192.168.1.100/1.jpg' /></a> </fieldset> "
                    + " <b>192</b> points.</body></html>";


webview.loadData(summary, "text/html", null);

1 个答案:

答案 0 :(得分:3)

参考这个答案,

Detect click on HTML button through javascript in Android WebView

同样的程序跟踪图像也是单击。如果它不起作用,请在HTML中创建一个按钮并将图像作为按钮的背景放置,这样您就可以使用链接中给出的答案来跟踪按钮。

感谢。