I've done this before...not sure what i'm doing wrong now I know it's the simplest thing in the world but i just want to make the text of my settings page black and the background white. Any ideas of what i'm doing wrong? my code does nothing.
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen
xmlns:android="http://schemas.android.com/apk/res/android"
android:background="#FFFFFF">
<CheckBoxPreference
android:summary="summary goes here"
android:title="Preference 1"
android:defaultValue="false"
android:key="one"
android:textColor="#000000">
</CheckBoxPreference>
</PreferenceScreen>
FYI, I've tried #AARRGGBB it doesn't change anything. If i use the exact same android:background="#FFFFFF" in any layout file it works great. I just don't know why it's not working here :/