我正在使用 ION ( https://github.com/koush/ion ) 将图像从网络加载ListView
到ImageView
. 目前我想从 中获取位图ImageView
,但我遇到了一个强制关闭我的应用程序的异常:
java.lang.ClassCastException: com.koushikdutta.ion.IonDrawable cannot be cast to android.graphics.drawable.BitmapDrawable
这些是我正在使用的行:
final ImageView itemImageView = (ImageView)view.findViewById(R.id.photoImage);
final Bitmap itemDrawable = ((BitmapDrawable) itemImageView.getDrawable()).getBitmap();
我该如何解决这个问题?提前致谢!