pmb
pmb

Reputation: 2327

change edittext bottom line color to tranparent color

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? enter image description here

Upvotes: 2

Views: 2921

Answers (2)

NahF
NahF

Reputation: 31

Maybe it will work with:

android:background="@android:color/transparent"

It works for me

Upvotes: 3

Biu
Biu

Reputation: 1076

Add this to your EditText

android:background=@null

Upvotes: 2

Related Questions