Is it possible to apply an accent color to an particular EditText while others are unaffected ?
i have this :
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- EditText on a blue background -->
<style name="BlueBGTextView" parent="@android:style/Widget.Material.Light.EditText">
</style>
<!-- default EditText -->
<style name="AppTheme.EditTextStyle" parent="@android:style/Widget.Material.Light.EditText">
</style>
<!-- default Theme -->
<style name="AppTheme" parent="@android:style/Theme.Material.Light.NoActionBar">
<item name="android:editTextStyle">@style/AppTheme.EditTextStyle</item>
<item name="android:colorAccent">#ff0288d1</item> <!-- use to setup the color of the text selection handles -->
<item name="@attr/BlueBGTextViewStyle">@style/BlueBGTextView</item>
</style>
</resources>
but the problem is that <item name="android:colorAccent">#ff0288d1</item>
is applied globally to all my edits. I would like to apply it only to the
<style name="BlueBGTextView" parent="@android:style/Widget.Material.Light.EditText">
</style>
any idea how i can do this ?