I am using a webview to present some formatted stuff in my app. For some interaction (which are specific to certain dom elements) I use javascript and WebView.addJavas
WebView.addJavas
An alternative solution is to subclass WebView and Override performLongClick as bellow:
public class AdvanceWebView extends WebView { //Add constructors... @Override public boolean performLongClick() { return true; } }