Question

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));
}

}

Was it helpful?

Solution

Use android:cacheColorHint="#00000000" in your layout.

See also http://android-developers.blogspot.com/2009/01/why-is-my-list-black-android.html

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top