I'm creating an ordinary Checkbox view:
<CheckBox
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
This light green (#A5D6A7) is due the accent color defined in main style:
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<item name="colorAccent">@color/green_light</item>
I already found that I can't change this style in runtime: How to set colorAccent in code?
What I want to is change this color on a specific Checkbox, not globally over app. Can I do it without creating a specific asset? Because the user will able to change this color in runtime.
Thanks!
Aucun commentaire:
Enregistrer un commentaire