Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to quickly and safely check if an android.widget.ImageView currently has a Bitmap of non zero value attached. What is a quick way to do this.

Update my image view is set initially drawable set to "logo.png" so if I know that it is currently set to logo.png than I know that the bitmap has not yet been set. So how can I check if background drawable is currently logo.png

Thanks

share|improve this question
May be this can help stackoverflow.com/questions/9113895/… – Serj Lotutovici Dec 27 '12 at 3:26
I can't accept your comments, only actual answers. – NextDroid Dec 27 '12 at 4:19

2 Answers

Get Bitmap attached to ImageView

Check this out.

It looks like you have to create a bitmap from the ImageView and check to see if it is null.

imageView.setDrawingCacheEnabled(true);    
imageView.buildDrawingCache(true);
Bitmap bmap = Bitmap.createBitmap(imageView.getDrawingCache());
imageView.setDrawingCacheEnabled(false);
share|improve this answer
Ok. How can I check quickly if my image still has src="logo.jpg" or a bitmap that I set later. I need to do this really fast. Is there a way to check if the current background image is logo.jpg? – NextDroid Dec 27 '12 at 4:17

Use getDrawable() method, if it return null then nothing assigned

if(view.getDrawable != null)
{
  //Image Assigned
}
else
{
  //nothing assigned
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.