android - How can I disable the clipboard functionality when my EditText has focus - Stack Overflow

I want to disable this clipboard when my password edit text has focus. I'm having trouble with some

I want to disable this clipboard when my password edit text has focus. I'm having trouble with some text tha users can paste it. This is my current code. The paste from the cursor is already disabled.

fun AppCompatEditText.disablePasteOption() {
    customInsertionActionModeCallback = ActionModeCallbackInterceptor()
    customSelectionActionModeCallback = ActionModeCallbackInterceptor()
    this.isLongClickable = false
    this.setTextIsSelectable(false)
}

With the code below, it worked but it's a workaround.

addTextChangedListener( object : TextWatcher {
    override fun beforeTextChanged(s: CharSequence?, start: Int, count: Int, after: Int) {
        if (after - count > 1) {
            [email protected](s)
            [email protected](s.toString().length)
        }
    }

    override fun onTextChanged(s: CharSequence?, start: Int, before: Int, count: Int) {
    }

    override fun afterTextChanged(s: Editable?) {
    }

})

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1742333827a4424251.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信