Android changing the background color for preference fragment
I have set a theme for my application, which includes a blue background... However, this made my preference fragment blue too. I want to keep the original "android:Theme.Holo.Light.DarkActionBar". How to do so? thanks! Add the following code to your PreferenceFragment implementation: @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View view = super.onCreateView(inflater, container, savedInstanceState); view.setBackgroundColor(getResources().getColor(android.R.color.your_color)); return view; } you can use a style file or in your