Bahaa Odeh
Bahaa Odeh

Reputation: 583

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

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.

Upvotes: 6

Views: 6426

Answers (1)

anjaly
anjaly

Reputation: 518

Disables all touch events on a WebView

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

Upvotes: 5

Related Questions