我有一个 TextView,它在我的活动的登录页面中显示一条错误消息。当我回到这个活动时,我不知道如何清除它的价值。我用于editText.setText("")
EditText 字段。但是当我尝试将它用于我的 TextView 时,它显示了NullPointerException
这里可以使用什么?
error = (TextView) findViewById(R.id.errorPopUp);
在onResume()
方法中:
@Override
protected void onResume()
{
super.onResume();
error.setText("");
}
您应该检查此活动生命周期