美文网首页Android相关
getResources()过时后的替代方法

getResources()过时后的替代方法

作者: Condor_c33a | 来源:发表于2017-09-12 11:04 被阅读54次

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);

相关文章

网友评论

    本文标题:getResources()过时后的替代方法

    本文链接:https://www.haomeiwen.com/subject/xsqcsxtx.html