Android-Collection
Android-Collection copied to clipboard
getResources().getColor() is deprecated
用 23 的 api,会有此警告,处女座的朋友看着不爽,那么找一个替换下咯,推荐用这个:
ContextCompat.getColor(context, R.color.color_name)
ContextCompat 是 v4 包里的,请放心使用,另外还有getDrawable()等方法。