In my form I use setError(\"\")
on an EditText
field. My Application-Theme extends android:Theme.Holo
.
I have manually set an imag
My response works, is in kotlin.
private fun setErrorOnSearchView(searchView: SearchView, errorMessage: String) {
val id = searchView.context
.resources
.getIdentifier("android:id/search_src_text", null, null)
val editText = searchView.find<EditText>(id)
val errorColor = ContextCompat.getColor(this,R.color.red)
val fgcspan = ForegroundColorSpan(errorColor)
val builder = SpannableStringBuilder(errorMessage)
builder.setSpan(fgcspan, 0, errorMessage.length, 0)
editText.error = builder
}
do following in manifest.xml
<resources>
<style name="LightErrorFix" parent="@android:style/Theme.Light">
<item name="android:textColorSecondaryInverse">@android:color/secondary_text_light</item>
</style>
</resources>
set the property
android:textColorPrimaryInverse="YourCOLOR"
to the color nedded.
You can change the text color by using HTML Font Tag.
But for customizing background color, you should make your own custom pop up. For more information, Kindly go through this link:- How to write style to error text of EditText in android?
Assuming you did sth like this:
EditText text = (EditText) findViewById(R.id.myedittext);
you can do the following:
text.setTextColor(Color.parseColor("#FFFFFF"));
or
text.setTextColor(Color.rgb(200,0,0));
or if you want/need alpha:
text.setTextColor(Color.argb(0,200,0,0));
Anyhow, you should specify your colors in your color.xml (wayyy better to be maintained):
<color name="myColor">#f00</color>
and then use it like this:
text.setTextColor(getResources().getColor(R.color.myColor));
Have fun :)
You can try this one:
editText.setError(Html.fromHtml("<font color='red'>Error Message!</font>"));