我正在使用此代码
getActivity().getActionBar()
.setBackgroundDrawable(getResources().getDrawable(R.drawable.barlist));
由于 api 问题,某些设备不支持我将如何更改为 setBackground 之类的东西
getActivity().getActionBar()
.setBackground(getResources().getDrawable(R.drawable.barlist));
这导致我这个错误
The method setBackground(Drawable) is undefined for the type ActionBar.