[android/Kotlin] Bitmap(VectorAsset) id 호출 실패

love&peace·2023년 9월 30일

이슈 : Bitmap(VectorAsset) id 호출 실패

code :

 icon = BitmapFactory.decodeResource(resources, R.drawable.baseline_delete_24)       

logcat :

java.lang.NullPointerException: decodeResource(resources…wable.baseline_delete_24) must not be null

해결 : getDrawable 사용

  icon = ContextCompat.getDrawable(requireContext(), R.drawable.baseline_delete_24)?.toBitmap()!!

참고:
링크텍스트

0개의 댓글