How to disable copying, pasting and selecting toolbars from a web browser in an Android application

How to disable copying, pasting and selecting toolbars from a web browser in an Android application?

I am making an application that actually “browses” a website that works with Javascripts and JQuery.

So I'm wondering if I can turn off the folder bar for copying.

+5
source share
1 answer

Disables all touch events in WebView

mWebView.setOnLongClickListener(new OnLongClickListener() {
@Override
public boolean onLongClick(View v) {
    return true;
}
});
mWebView.setLongClickable(false);
+3
source

All Articles