android怎么判断edittext输入结束
1个回答
展开全部
et.addTextChangedListener(new TextWatcher() {
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {//在输入数据时监听
}
@Override
public void beforeTextChanged(CharSequence s, int start, int count,//输入数据之前的监听
int after) {
}
@Override
public void afterTextChanged(Editable s) {//输入数据之后监听
}
}
}
你还以在afterTextChanged(Editable s){ }中 同handler去延迟几秒 就可以了
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {//在输入数据时监听
}
@Override
public void beforeTextChanged(CharSequence s, int start, int count,//输入数据之前的监听
int after) {
}
@Override
public void afterTextChanged(Editable s) {//输入数据之后监听
}
}
}
你还以在afterTextChanged(Editable s){ }中 同handler去延迟几秒 就可以了
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询