Change Preference Item Summary Text Color in Android 4
- by AntounG
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>
…