Reputation: 2327
How could I change editext buttom line color
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<item name="colorControlNormal">#ff0000</item>
<item name="colorControlActivated">#ff0000</item>
<item name="colorControlHighlight">#ff0000</item>
<item name="colorAccent">#ff0000</item>
<!-- Customize your theme here. -->
</style>
As you see I set it on red but i always show black. What's wrong here?
Upvotes: 2
Views: 2921
Reputation: 31
Maybe it will work with:
android:background="@android:color/transparent"
It works for me
Upvotes: 3