How to disable copy/paste from/to EditText

后端 未结 24 1320
情歌与酒
情歌与酒 2020-11-22 12:18

In my application, there is a registration screen, where i do not want the user to be able to copy/paste text into the EditText field. I have set an onLon

24条回答
  •  北海茫月
    2020-11-22 12:58

    Here is a hack to disable "paste" popup. You have to override EditText method:

    @Override
    public int getSelectionStart() {
        for (StackTraceElement element : Thread.currentThread().getStackTrace()) {
            if (element.getMethodName().equals("canPaste")) {
                return -1;
            }
        }
        return super.getSelectionStart();
    }
    

    Similar can be done for the other actions.

提交回复
热议问题