gpt4 book ai didi

android - 如何在 android 的 EditText 上使用 onBlur 函数?

转载 作者:IT王子 更新时间:2023-10-28 23:35:54 27 4
gpt4 key购买 nike

我有一个要求功能 onBlur 像 android 中的 javascript。当用户在其中输入内容后退出 EditText 字段时,我想显示一个 Toast。这似乎很简单,但我找不到它。任何帮助将不胜感激。

最佳答案

试试这样的:

mEditText.setOnFocusChangeListener(new OnFocusChangeListener() {
@Override
public void onFocusChange(View v, boolean hasFocus) {
if (!hasFocus)
Toast.makeText(getApplicationContext(), "unfocus", 2000).show();
}
});

关于android - 如何在 android 的 EditText 上使用 onBlur 函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8322207/

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