Android相关

getResources()过时后的替代方法

2017-09-12  本文已影响54人  Condor_c33a

1)使用drawable资源但不为其设置theme主题

ResourcesCompat.getDrawable(getResources(), R.drawable.name, null);

2)使用默认的activity主题

ContextCompat.getDrawable(getActivity(), R.drawable.name);

3)使用自定义主题

ResourcesCompat.getDrawable(getResources(), R.drawable.name, anotherTheme);

上一篇 下一篇

猜你喜欢

热点阅读