How can I completely change the background color of preferenceActivity? See my screenshot. There is a white frame on the tablet around the background background and list background. I cannot figure out how to change its color / paintability. I just need to make it transparent.
This is how I took a screenshot. This code is placed in onCreate of PreferenceActivity.
this.getListView().setBackgroundDrawable(this.getResources().getDrawable(R.drawable.splash_bg));
this.getWindow().setBackgroundDrawable(this.getResources().getDrawable(R.drawable.splash_bg));
Hopefully I don't have to fall into any styles, and I just can access it in code for simplicity.

source
share