I want to disable the long click on webView so I cant select the text in it, and I use three ways to do that but nothing work:
1) android:longClickable="false"
2) webView.setLongClickable(false);
3) webView.setOnLongClickListener(new OnLongClickListener() {
@Override
public boolean onLongClick(View v) {
return true;
}
});
So any help please.