Answers:
protected void onPause () {
TextView textView = ...; // fetch it as appropriate
textView.setError(null);
}
因为如文档中所述:
如果错误为空,则错误消息和图标将被清除。
在kotlin中,您可以简单地使用属性访问语法访问属性,其中
protected void onPause () {
EditText mEditText = ...; // fetch it as appropriate
mEditText.error = null
}