Textinputlayout: Runtimeexception - Failed To Resolve Attribute At Index 24
I keep on getting this error when I try to setErrorEnabled on my textInputLayout : 03-12 12:29:03.206 5706-5706/? E/AndroidRuntime: FATAL EXCEPTION: main
Solution 1:
Just change the base theme for TextLabel to Widget.Design.TextInputLayout
<stylename="TextLabel"parent="Widget.Design.TextInputLayout">Solution 2:
For me a following works (https://stackoverflow.com/a/42779409/2914140):
<!-- Base application theme. --><stylename="AppTheme"parent="Theme.AppCompat.Light.NoActionBar"><!-- Customize your theme here. --><itemname="textColorError">@color/design_textinput_error_color_light</item></style>
Post a Comment for "Textinputlayout: Runtimeexception - Failed To Resolve Attribute At Index 24"