Change Preference Item Summary Text Color in Android 4

Viewed 9565

I have the below sample of preference items

 <CheckBoxPreference
     android:key="chkSound"
     android:summary="Sound is Off"
     android:title="Sound" />

I use a theme in the res/values to change the Summary text color

 <style name="ThemeDarkText">
    <item name="android:textColor">#000000</item>
  </style>

And in the code I write this line

    setTheme(R.style.ThemeDarkText);

Its working fine in Android 2.1 but when I tried to run it on a different os (ex Android 4.0) It didn't change the summary text color just the title color only..!!

Any help?

2 Answers
Related