I managed to change my preference activity's background color, but when I focus/scroll it, it blinks. Please help me solve this. This is how i change my background...
public class ConfigActivity extends PreferenceActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
addPreferencesFromResource(R.xml.preference);
findViewById(android.R.id.list).setBackgroundColor(getResources().getColor(R.color.gray));
}
}
Use android:cacheColorHint="#00000000" in your layout.
See also http://android-developers.blogspot.com/2009/01/why-is-my-list-black-android.html