I want Bitmap from networkimageview. here is my code and
String url="https://graph.facebook.com/"+u_id+"/picture";
mNetworkImageView = (NetworkImageView) findViewById(R.id.networkImageView);
mImageLoader = MySingletonClass.getInstance(this).getImageLoader();
mNetworkImageView.setImageUrl(url, mImageLoader);
After this I want bitmap from networkimageview. how to get it?
Try this:
EDIT:
I check the
Volleycode and found that they are using a tag to store info about the image, so, try this: