How to disable EditText box in Android when using LongClick Listener
- by user1443051
I have EditText box which has focusable and focusableontouch enabled and all the rest are disabled in XML. The problem I am facing is that on longclick on this text box the selectAll and select pop up comes up - I would like to disable it and at the same time use the OnlongClick Funtion too..
So I tried android:longClickable="false" on XML and set the text box using LongClick listener in java
Something like this: edEmailId.setOnLongClickListener(myOnLongClickListener);
Didn't work I am still getting selectALL popup window. Is LongClickable in XML and SetOnlongClicklistener the same?
If so how do I disable the popup?
Awaiting your response!
Thanks!