答案 0 :(得分:-1)
我不认为您可以使用默认弹出窗口更改背景,您必须创建自己的弹出窗口。
但更好的解决方案可能是使用TextInputLayout来包装EditText,然后在TextInputLayout上设置错误。
<android.support.design.widget.TextInputLayout
android:id="@+id/textInputLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<EditText
android:id="@+id/edittext"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Hint"/>
</android.support.design.widget.TextInputLayout>
然后使用
mTextInputLayout.setError("your error string");