I was wondering is there is an easy way to customize the look and feel of a prefs activity like below. Nothing fancy, just things like text size and bacground color
public class ActivityPreferences extends PreferenceActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setTitle(R.string.prefsTitle);
addPreferencesFromResource(R.xml.preferences);
}
}