I wonder should not be use System.gc() in android.
I searched the developer document:
Result:
public static void gc ()
Added in API level 1 Indicates to the VM that it would be a good time to run the garbage collector. Note that this is a hint only. There is no guarantee that the garbage collector will actually be run.
and, find reference infomation. this url : http://code.google.com/p/android/issues/detail?id=8488#c80
but this is so long ago.
if use Bitmap, use bitmap.recycle(). but complex views, how to gc?
Now, is that problem not resolved? and never used System.gc()?