最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

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

programmeradmin0浏览0评论

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?) {
    }

})
发布评论

评论列表(0)

  1. 暂无评论