Created
February 17, 2016 03:13
-
-
Save rafaelwkerr/8a13455b9ef1cb512cb0 to your computer and use it in GitHub Desktop.
Change bottom line color (Android Text Input Layout)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Add on your theme --> | |
<item name="colorControlNormal">@color/branco</item> | |
<item name="colorControlActivated">@color/branco</item> | |
<item name="colorControlHighlight">@color/branco</item> |
<style name="AppTheme" parent="Theme.MaterialComponents.Light.NoActionBar">
<item name="colorPrimary">@color/colorMain</item>
<item name="colorPrimaryDark">@color/colorMain</item>
<item name="colorAccent">@color/colorWhite</item>
<item name="colorControlNormal">@color/colorWhite</item>
<item name="colorControlActivated">@color/colorWhite</item>
<item name="colorControlHighlight">@color/colorWhite</item>
</style>
this is my style.xml . but it doesn't work
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
thanks...