Is it possible to call GC in Android?
I am wond开发者_如何转开发ering if there is a way to call gc from code, hopefully to free some memory.
You can request it with
System.gc();
Although the important note is this is only a request. There is no guarantee that the GC will run.
精彩评论