When setting a long error message on a TextInputEditText, it cuts it in two lines, but only one line is displayed:
Any way to solve this? I'm ok with two or multi lines, but they should be displayed properly.
When setting a long error message on a TextInputEditText, it cuts it in two lines, but only one line is displayed:
Any way to solve this? I'm ok with two or multi lines, but they should be displayed properly.
Well it turns out the problem was the styling... If you do something like:
<style name="V2NormalInput" parent="Widget.AppCompat.EditText">
....
</style>
And apply that to a TextInputEditText it'll clip the error message...
So the solution was simply to remove the parent:
<style name="V2NormalInput">
....
</style>
Now it works.