android context.getResources()方法的过时替换

在编译的过程中,IDE会提示
这里写图片描述
发现其中有一部分是context.getResources().getColor()方法的过时问题,
而且在编写过程中,还会提示
这里写图片描述

查了资料在23版本之后过时,替换的方法为
ContextCompat.getColor(context, R.color.black);

猜你喜欢

转载自blog.csdn.net/gerryrun/article/details/79457912