I couldn't find any hint about the color of the Edit Text. There are some information about sizes here but it doesn't mention about the color.
Should I treat it as a divider as mentioned here?:
I couldn't find any hint about the color of the Edit Text. There are some information about sizes here but it doesn't mention about the color.
Should I treat it as a divider as mentioned here?:
The new "TextInputLayout" control (included in the Design Support library) colors that line the same color as your accent color. This is done automatically by the OS as part of the AppCompat functionality.
So, I can't point to official docs for this - but I can tell you that the official "Material" input control colors the line the same as an accent color.
Bottom line, I think the line should be your accent color (when the EditText is focused and input is active on that view).
You should be using accent color.
https://www.google.co.in/design/spec/style/color.html#color-ui-color-application (check Fallback accent colors section)
If your accent color is too light or dark to sufficiently contrast with the background color, use a darker or lighter tint of the accent color instead. If your accent color doesn’t work at all, use the 500 version of your primary color on white backgrounds. If your background color is the 500 version of your primary color, make your accent color either white 100% or black 54%.
You can change the color of edit text line no need to treat it as the border already answer to this question is listed here. Once go through this links:
How to change line color in EditText
Change Line Color of EditText - Android
Thanks