Skip to content Skip to sidebar Skip to footer

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 an

Solution 1:

Disables all touch events on a WebView

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

Post a Comment for "How Can I Disable Copy , Paste And Select Toolbar , From A Webview Inside Android Application"