我想在<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);
答案 0 :(得分:3)
参考这个答案,
Detect click on HTML button through javascript in Android WebView
同样的程序跟踪图像也是单击。如果它不起作用,请在HTML中创建一个按钮并将图像作为按钮的背景放置,这样您就可以使用链接中给出的答案来跟踪按钮。
感谢。