when you long click an editText in andriod, a utility bar with options to cut/copy/select all/select word comes up. I am using an onLongClickListener to bring up an Dialog- and want to hide these edit options.

i'm not sure what it is called, so i cant find it in any documentation in order to figure out how to hide it.

i'd like something that does this:

onLongClick(View v){
//hide edit options
myDialogBox.show();
}
link|improve this question

did you try to return true in your onLongClick(View v) implementation ? – Selvin Oct 20 '11 at 13:46
thanks selvin, that worked – kleaver Oct 20 '11 at 22:20
feedback

1 Answer

up vote 2 down vote accepted

You should return true in your onLongClick()-method so the Android Framework knows that the action has been consumed.

Further information can be found here: How to disable edittext pop up when EditText is LongClicked?

link|improve this answer
beautiful. worked – kleaver Oct 20 '11 at 22:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.