我需要在应用程序中的某个逻辑之后插入一个焦点从一个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) {
}
});
1条答案
按热度按时间t5fffqht1#
如果你的第二篇文章是
editText2
你能做的ediText2.requestFocus()