Skip to content Skip to sidebar Skip to footer

Android Get Full View As Bitmap

Possible Duplicate: Android 2.1 View's getDrawingCache() method always returns null I hava a Layout which I want to save an bitmap. If my Layout is smaller than the screen every

Solution 1:

buildDrawingCache should not have your view if it is bigger than the screen as the visible portion of the view is only drawn and the cache holds only what is drawn.

You may try this method. Here a bitmap is passed to the view, so that the view is drawon to the bitmap. http://www.brighthub.com/mobile/google-android/articles/30676.aspx

Post a Comment for "Android Get Full View As Bitmap"