onLongClickListener does not work on WebView

前端 未结 2 1062
别跟我提以往
别跟我提以往 2020-12-21 00:20

I have the following struktur to implement an longclicklistener. It works if I click on a text on the webview which contains a html-link, so I know the structure is not comp

2条回答
  •  醉梦人生
    2020-12-21 01:24

    Override onTouch methode of your webview and return true for ACTION_DOWN events. Thereby you consume your down event.

      @Override
      public boolean onTouch(View v, MotionEvent event) {
        switch (event.getAction()) { 
             case MotionEvent.ACTION_DOWN:  
                return true;
          }
       }
    

提交回复
热议问题