change background color of Preference

后端 未结 8 1811
北荒
北荒 2020-12-02 10:25

I have a PreferenceCategory, xml file and I have defined all preferences in it, I call this from class that extends PreferenceActivity. I am unable

8条回答
  •  旧时难觅i
    2020-12-02 11:00

    Or you can also make drawable as your background:

    getListView().setBackgroundDrawable(getResources().getDrawable(R.drawable.bluegradient));

    Note: setBackgroundDrawable() is deprecated. Use setBackground() instead.

    getListView().setBackground(getResources().getDrawable(R.drawable.bluegradient));

提交回复
热议问题