在我的项目中,我使用(Volley + NetworkImageView)下载一些图像和文本,并在列表视图中显示..直到这里,我没有任何问题。
现在,我想从NetworkImageView获取位图,我尝试了很多类似下面的方法,但是没有这些方法适用于我。
imageView.buildDrawingCache();
Bitmap bmap = imageView.getDrawingCache();
另一种方法:
{{1}}
他们没有工作..
感谢任何帮助,
答案 0 :(得分:1)
您无法获取Bitmap引用,因为它从未保存在ImageView中。 但是你可以使用:
((BitmapDrawable)this.getDrawable()).getBitmap();
当你用Volley设置它时,请执行此操作:
/**
* Sets a Bitmap as the content of this ImageView.
*
* @param bm The bitmap to set
*/
@android.view.RemotableViewMethod
public void setImageBitmap(Bitmap bm) {
// Hacky fix to force setImageDrawable to do a full setImageDrawable
// instead of doing an object reference comparison
mDrawable = null;
if (mRecycleableBitmapDrawable == null) {
mRecycleableBitmapDrawable = new ImageViewBitmapDrawable(
mContext.getResources(), bm);
} else {
mRecycleableBitmapDrawable.setBitmap(bm);
}
setImageDrawable(mRecycleableBitmapDrawable);
}
但是,如果您以任何其他方式设置默认图像或错误图像或任何其他图像,则可能无法获得BitmapDrawable,例如NinePatchDrawable。
这是如何检查:
Drawable dd = image.getDrawable();
if(BitmapDrawable.class.isAssignableFrom(dd.getClass())) {
//good one
Bitmap bb = ((BitmapDrawable)dd).getBitmap();
} else {
//cannot get that one
}