0

我有一个 TextView,它在我的活动的登录页面中显示一条错误消息。当我回到这个活动时,我不知道如何清除它的价值。我用于editText.setText("")EditText 字段。但是当我尝试将它用于我的 TextView 时,它显示了NullPointerException 这里可以使用什么?

error = (TextView) findViewById(R.id.errorPopUp);
4

2 回答 2

2

onResume()方法中:

@Override
protected void onResume()
{
  super.onResume();
  error.setText("");
}
于 2012-06-15T06:27:20.113 回答
0

您应该检查此活动生命周期

于 2012-06-15T07:28:31.480 回答