Casting from RoundedBitmapDrawable to BitmapDrawable

2.6k Views Asked by At

Everything worked well before starting using RoundedBitmapDrawable to round Bitmap's corners.

After starting using RoundedBitmapDrawable, I'm getting:

java.lang.ClassCastException: android.support.v4.graphics.drawable.RoundedBitmapDrawable21 cannot be cast to android.graphics.drawable.BitmapDrawable

Code:

BitmapDrawable bitmapDrawable = ((BitmapDrawable) imageView.getDrawable());
1

There are 1 best solutions below

0
On

There is not a hierarchical link between these two types except that they share the same parent. Instead, you can check the type of drawable at runtime and cast accordingly,

if (imageView.getDrawable() instanceof android.support.v4.graphics.drawable.RoundedBitmapDrawable) {
    RoundedBitmapDrawable drawable = (RoundedBitmapDrawable) imageView.getDrawable();
    Bitmap roundedBitmap = drawable.getBitmap();
    // ...
}