API Level 23부터 해당 메서드들이 deprecated 되었다고 한다.
해결 방안은 ContextCompat을 통해 getColor()와 getDrawable()을 호출하는 것이다.
// API 23 이전
resources.getColor(R.color.RED)
resources.getDrawable(R.drawable.ball)
// API 23 이후
ContextCompat.getColor(context, R.color.RED)
ContextCompat.getDrawable(context, R.drawable.ball)
'프로그래밍 > Android' 카테고리의 다른 글
[HTTP 통신 라이브러리] OkHttp와 Retrofit (0) | 2024.03.11 |
---|---|
SoundPool Constructor deprecated 해결 (0) | 2024.03.06 |
[Kotlin] Android Studio 커스텀 프로그래스바 만들기 (Custom Progress bar) (0) | 2024.03.02 |
[Kotlin] Android Studio 계산기 만들기 (feat. MVVM) (0) | 2024.02.08 |
[Kotlin] Android Studio RecyclerView 사용법 (feat. MVVM) (1) | 2024.02.07 |