민프
[Android Error] roundeddrawable cannot be cast to android.graphics.drawable.bitmapdrawable 본문
[Android Error]
[Android Error] roundeddrawable cannot be cast to android.graphics.drawable.bitmapdrawable
민프야 2021. 7. 3. 20:49java.lang.ClassCastException: com.makeramen.roundedimageview.RoundedDrawable cannot be cast to android.graphics.drawable.BitmapDrawable
ImageView에서 Bitmap을 뽑아내기 위해서
Bitmap bitmap = ((BitmapDrawable)image.getDrawable()).getBitmap();
이렇게 해주면 되는데
위와 같은 에러가 나온다..
구글링을 해본 결과
RoundedImageView에서 Bitmap을 얻기 위해서는
BitmapDrawable이 아니라 RoundedDrawable로 얻을 수 있다.
해당하는 라이브러리의 내용을 보면 알 수 있다.
'[Android Error]' 카테고리의 다른 글
Comments