How do you disable the OnLongClick event on an edit text?
I did try the following things:
editText.cancelLongPress();
also
editText.setOnLongClickListener(null);
and also the
editText.setOnLongClickListener(new OnLongClickListener() {
            @Override
            public boolean onLongClick(View v) {
                // TODO Auto-generated method stub
                return false;
            }
        });
But nothing worked. Help please.