I have an EditText on which I need to disable long click. On long clicking the editText the action mode set for the apps WebView pops up.
Tried adding the below code but failed.
editTextView.setLongClickable(false);
editTextView.setTextIsSelectable(false);
Also tried adding
longClickable="false"
on the layout xml.
Try using
OR