[Kotlin]TextView 등 글자색 지정 방법 getColor is deprecated

2019. 8. 6. 15:46Coding/Android Studio

728x90

getResources().getColor() 

resources.getColor()

리소스의 getColor()가 deprecated됬고, 새로운 방식으로

 

textView.setTextColor(ContextCompat.getColor(mContext, R.color.main_color))

 

ContextCompat요기서 getColor를 가져다 쓰고, 이름처럼 context가 필요하다.

(일반적으로 activity에서 사용하면 this를 넣어주면 될듯)

728x90