onLongClickListener does not work on WebView
问题 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 completely wrong. I removed this link now and the listener just doesn't listen to clicks anymore. Does anybody know this problem and have some advices? private View.OnLongClickListener mLongClickHandler = new View.OnLongClickListener() { @Override public boolean onLongClick(View view) { ... return true; } }; ... mywebview