edittext和focus

js4nwp54  于 2021-07-03  发布在  Java
关注(0)|答案(1)|浏览(351)

我需要在应用程序中的某个逻辑之后插入一个焦点从一个edittext转移到另一个edittext。示例:在信用卡号edittext中,当值的长度达到16时,它将跳转到到期月份edittext。。。
我的代码:

numberCard.addTextChangedListener(new TextWatcher() {
        @Override
        public void beforeTextChanged(CharSequence s, int start, int count, int after) {

        }

        @Override
        public void onTextChanged(CharSequence s, int start, int before, int count) {
            if(s.length()==16){

              //  how to make it jump to another editText?
            }
        }

        @Override
        public void afterTextChanged(Editable s) {

        }
    });
t5fffqht

t5fffqht1#

如果你的第二篇文章是 editText2 你能做的 ediText2.requestFocus()

相关问题