gpt4 book ai didi

Android 检查键盘输入

转载 作者:行者123 更新时间:2023-11-29 16:58:29 26 4
gpt4 key购买 nike

我想检查键盘输入。因此,在编写时,TextView 上不应显示任何文本!只有当他完成!

谢谢!

最佳答案

您可以使用 EditText onFocusChange 监听器来检查用户是否已完成编辑:

((EditText) findViewById(R.id.youredittext)).setOnFocusChangeListener(new OnFocusChangeListener() {

@Override
public void onFocusChange(View v, boolean hasFocus) {
/* When focus is lost check that the text field
* has valid values.
*/
if (!hasFocus) {
validateInput(v);
}
}

关于Android 检查键盘输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43744677/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com