如何检查EditText中的字符外观?

时间:2014-05-03 08:20:49

标签: android

我想知道:

当我开始在Edittext中输入时(当第一个字符出现时)我想创建一个动作

我用Google搜索,但我找不到任何东西?

我有想法。请帮帮我。非常感谢你!

1 个答案:

答案 0 :(得分:0)

您需要TextWatcher。使用editText.AddTextChangedListener()。您可以检查beforeTextChanged现有文本是否为空,并且要添加的新文本不为空。

@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
    if (TextUtils.isEmpty(s) && after > 0) {
        // new text added to empty text field
    }
}