How to disable copy/paste from/to EditText

Best method is to use:

etUsername.setLongClickable(false);

Leave a Comment