Overriding referenced style attributes

I think you need that line in your theme <item name=”android:checkedTextViewStyle”>@style/ListViewCheckedTextViewRowStyle</item> so it would look like this: <style name=”Theme.Yellowgreen” parent=”android:Theme.Holo.Light.DarkActionBar”> <item name=”android:listChoiceIndicatorMultiple”>@drawable/btn_check_holo_light</item> <item name=”android:checkedTextViewStyle”>@style/ListViewCheckedTextViewRowStyle</item> </style> UPDATE After question update and some additional information form comments we found that the problem was in Context. It’s the same mistake I did in that my question: Android color … Read more