I'm trying to set colorAccent to my project but when i build to device the color doesn't change.
The selector color still in black color.
http://i.stack.imgur.com/xLJ9w.pngThis's my styles.
<resources>
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<item name="colorPrimary">@color/app_primary_color</item>
<item name="colorPrimaryDark">@color/app_primary_dark_color</item>
<item name="colorAccent">@color/red</item>
</style>
</resources>
What's wrong with my code or i miss something ?