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.

As the title describes, I want to get a Drawable from an ImageView programatically.

I searched on the internet and I can't find how can I do that.

share|improve this question
An ImageView is a View, so it can't be transformed into a Drawable. What are you trying to do? Do you need a Drawable for a specific image? – acj Jan 30 at 18:03
i found the solution, that was easy: imageView.getDrawable() – haythem souissi Jan 30 at 18:06

1 Answer

up vote 0 down vote accepted

Assuming your ImageView is called myImageView:

myImageView.setDrawingCacheEnabled(true);
Bitmap bitmap = Bitmap.createBitmap(myImageView.getDrawingCache());

Make sure you call this after the layout is done: Use the famous OnGlobalLayoutListener

share|improve this answer
i found the solution, that was easy: imageView.getDrawable() I will consider this as the right answer. Thanks – haythem souissi Jan 30 at 18:06
Well I am sorry (: I thought your situation is a bit more complicated :p. – Sherif elKhatib Jan 30 at 18:49
no problem, thanks :) – haythem souissi Jan 30 at 18:53

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.