是否可以在提示中显示我的错误消息?

时间:2016-02-17 02:40:32

标签: android android-layout android-studio

我的注册页面有多组字段,给出的设计太窄。字段彼此接近,没有空间。我希望在每个字段的提示中显示我的错误消息。

有可能吗?如何?

2 个答案:

答案 0 :(得分:0)

您是否尝试过setHint方法?您可以更改错误字段的提示,甚至可以将提示颜色更改为红色或任何最适合您设计的颜色。

((TextView) findViewById(R.id.yourEditTextId)).setHint("Oops! Try again.");

setHint Android Documentation

Answer explanation on SO

答案 1 :(得分:0)

您正在进行注册过程,因此您使用了Edittext。

对于使用此的Edittext,

 EditText editText = (EditText)findViewById(R.id.edittext);
        editText.setError("Enter the Valid UserName");