6

How can I disable copy, paste and select toolbar from a webview inside Android application?

I am making an application that actually "webview" a website that work on Javascripts and Jquery.

So I am wondering if I can disable the copy paste toolbar.

Tanuj Wadhwa
  • 1,945
  • 8
  • 33
  • 56
Bahaa Odeh
  • 563
  • 1
  • 7
  • 16
  • possible duplicate of http://stackoverflow.com/questions/5107651/android-disable-text-selection-in-a-webview – richey Jan 04 '13 at 23:05

1 Answers1

5

Disables all touch events on a WebView

mWebView.setOnLongClickListener(new OnLongClickListener() {
@Override
public boolean onLongClick(View v) {
    return true;
}
});
mWebView.setLongClickable(false);
anjaly
  • 518
  • 5
  • 12