我想更改 a 中正确图标错误(带有!符号的图像)的样式,TextInputLayout
但我不知道如何。
有可能的?。
我想更改 a 中正确图标错误(带有!符号的图像)的样式,TextInputLayout
但我不知道如何。
有可能的?。
要在您的 Java 类中执行此操作,您可以执行以下操作:
// initialize your drawable object
Drawable myErrorDrawable = getResources().getDrawable(R.drawable.my_error_drawable);
// set the dimension/bounds
myErrorDrawable.setBounds(0, 0, myErrorDrawable.getIntrinsicWidth(), myErrorDrawable.getIntrinsicHeight());
// attach the drawable to your EditText.
editText.setError("An error occured", myErrorDrawable);