[android-developers] Re: taking a screen shot of whatever is drawn on the view...

2009-10-29 Thread Samuh

Thank you very much! :)
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: taking a screen shot of whatever is drawn on the view...

2009-10-28 Thread gjs

Hi,

Have a look at the code i posted here -

http://groups.google.com/group/android-developers/browse_thread/thread/6aeed20525760f3/c44b305df3897427

Regards

On Oct 28, 9:18 pm, Samuh samuh.va...@gmail.com wrote:
 I am trying to take a screen shot of whatever is drawn on my custom
 view's canvas. I use the following lines for the same:

 //enable drawing cache
 this.setDrawingCacheEnabled(true);
 // use the drawing on the cache to create a Bitmap Object
 Bitmap screenshot = Bitmap.createBitmap(this.getDrawingCache());
 // disable the cache
 this.setDrawingCacheEnabled(false);

 Problem:

 The getDrawingCache() call returns null sometimes.
 Any pointers to what I am doing wrong here?

 Thanks.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---