getResources().getColor(android.R.color.white)过时了
以下方法替换
getResources().getColor(android.R.color.white, getActivity().getTheme()));
或
ContextCompat.getColor(context, R.color.color_name)
getResources().getColor(android.R.color.white)过时了
以下方法替换
getResources().getColor(android.R.color.white, getActivity().getTheme()));
或
ContextCompat.getColor(context, R.color.color_name)
评论