I guess nobody reported my case.
I've solved like below. See my case.

.......

Bitmap dummy = Bitmap.createBitma(1, 1, Config.RGB_565);

Bitmap a = Bitmap.createBitma(100, 100, Config.RGB_565);
Canvas c = new Canvas(a);

...c.draw(..) ...

a.recycle();
c.setBitmap(dummy); // This is key point. Very important to remove
reference of 'c'.

a = null;
c = null;

.........

Good Luck.

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to