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条)