[Kotlin]TextView 등 글자색 지정 방법 getColor is deprecated
2019. 8. 6. 15:46ㆍCoding/Android Studio
728x90
getResources().getColor()
resources.getColor()
리소스의 getColor()가 deprecated됬고, 새로운 방식으로
textView.setTextColor(ContextCompat.getColor(mContext, R.color.main_color))
ContextCompat요기서 getColor를 가져다 쓰고, 이름처럼 context가 필요하다.
(일반적으로 activity에서 사용하면 this를 넣어주면 될듯)
728x90
'Coding > Android Studio' 카테고리의 다른 글
[Kotlin]Only the original thread that created a view hierarchy can touch its views. (0) | 2019.08.20 |
---|---|
[Kotlin] Android Studio Kotlin xml code 정렬이 한줄로 나올때 (0) | 2019.08.14 |
[Kotlin]initialized 체크 (0) | 2019.08.06 |
[Kotlin]TextView에 취소선 넣기 (0) | 2019.07.24 |
[Kotlin]TextView 밑줄 넣기 (0) | 2019.07.23 |