Skip to content Skip to sidebar Skip to footer

Converting Framelayout As Bitmap

I have a FrameLayout that consist some Image views & one EditText. I am saving this layout as an image in the memory (external). First time when I set the images in imageviews

Solution 1:

to overcome with this problem I destroy the drawingcache after saving the image.

savedImage.destroyDrawingCache();

Post a Comment for "Converting Framelayout As Bitmap"