过时方法:setBackgroundColor(getResources().getColor())
setBackgroundColor(getResources().getColor(R.color.contact_letter_idx_bg));
替换方法
setBackgroundColor(ContextCompat.getColor(getContext(),R.color.contact_letter_idx_bg));
过时方法:paramContext.getResources().getDrawable
hintDrawable=
paramContext.getResources().getDrawable(R.drawable.hit_point);
替换方法:
hintDrawable=
ContextCompat.getDrawable(paramContext,R.drawable.hit_point);