空错误弹出TextView

时间:2015-02-12 08:48:45

标签: android

TextView中的setError

((TextView) findViewById(R.id.change_password_new_password))
        .setError("error");

但是当我按下该图标

时,我得到的错误图标和错误弹出窗口没有文字

enter image description here

看起来被遗忘的东西澄清了他想要得到的东西, 我想在弹出窗口中显示文本

2 个答案:

答案 0 :(得分:0)

对于你的情况,我认为你需要一些东西:

TextView password= (TextView) findViewById(R.id.change_password_new_password);
password.setError("error", getResources() .getDrawable(R.drawable.ic_launcher));

答案 1 :(得分:0)

解决

我将Html.fromHtml("<font color='red'>this is the error</font>")设置为错误,现在我可以看到文字:)