丑话说前头,本文转自:
http://stackoverflow.com/questions/29041027/android-getresources-getdrawable-deprecated-api-22
我们在项目经常会用到从资源文件中获取drawable对象的时候,但好像最新的api已经弃用
getResources().getDrawable(R.drawable.ic_launcher);
我们可以这样做:
ResourcesCompat.getDrawable(getResources(), R.drawable.ic_launcher, null);
以上这种模式是没有指定主题(theme)的,要指定主题就直接把最后一个参数传一个主题进去
也就是这样:ResourcesCompat.getDrawable(getResources(),R.drawable.name,anotherTheme);
附:
还可以这样
ContextCompat.getDrawable(getActivity(),R.drawable.name);