Change Preference Item Summary Text Color in Android 4

Posted by AntounG on Stack Overflow See other posts from Stack Overflow or by AntounG
Published on 2012-08-11T21:23:11Z Indexed on 2012/09/13 21:38 UTC
Read the original article Hit count: 179

Filed under:
|
|
|

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?

© Stack Overflow or respective owner

Related posts about android

Related posts about colors