getResources().getDrawable()过时问题 报错解决

本文用于解决getDrawable()被划掉、波浪线等问题:

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

ResourcesCompat.getDrawable(getResources(), R.drawable.name, null);   //null就是null,不设主题
如:myexample.setIcon(ResourcesCompat.getDrawable(getResources(), R.mipmap.ic_launcher, null));
 
 

2)使用默认的activity主题

ContextCompat.getDrawable(getActivity(), R.drawable.name);   //getActivity(),如果是在activity里就直接用this
如:myexample.setIcon(ContextCompat.getDrawable(this,R.drawable.ic_favorite_black_18dp));
 
 

3)使用自定义主题

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

猜你喜欢

转载自blog.csdn.net/caihuashen/article/details/78099607