I can add underline in spinner using style="@style/Base.Widget.AppCompat.Spinner.Underlined"
. How can I change the color of the underline using style only? I don't want to use any drawable file to change this.
<item name="colorControlHighlight">@color/colorAccent</item>
<item name="colorControlNormal">@color/colorAccent</item>
Using above style, Its only highlight underline when user click on it. Its not changing color of underline on normal state.