android webview:检测长按和

前端之家收集整理的这篇文章主要介绍了android webview:检测长按和前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有没有办法检测WebView内的链接和图像上的长按?

解决方法

我查看了Browser.apk源代码,找到了我真正想要的内容
public void onCreate(Bundle savedInstanceState) {
        // ...
        registerForContextMenu(descriptionWebView);
        // ...
    }

    public void onCreateContextMenu(ContextMenu menu,View view,ContextMenu.ContextMenuInfo menuInfo) {
      WebView.HitTestResult hitTestResult = descriptionWebView.getHitTestResult();
      switch (hitTestResult.getType()) {
        // ...
      }
    }
原文链接:https://www.f2er.com/android/309114.html

猜你在找的Android相关文章