How to change PreferenceActivity theme?

前端 未结 5 974
执念已碎
执念已碎 2020-12-18 21:45

I\'m trying to change the theme for the PreferenceActivity in my app and I just can\'t get it to work.

This is the xml:

    

        
5条回答
  •  不思量自难忘°
    2020-12-18 22:36

    If you want to change the background you could use

    public class FractalPreferenceActivity extends PreferenceActivity  {
       .......
    
        @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        getWindow().setBackgroundDrawableResource(R.drawable.gradient); 
        getListView().setBackgroundColor(Color.TRANSPARENT); 
        getListView().setCacheColorHint(Color.TRANSPARENT); 
    
               .......
        }
    

    }

提交回复
热议问题