Reputation: 487
Whether system.gc will avoid android's out of memory exception for bitmap?
Upvotes: 0
Views: 821
Reputation: 240900
System.gc()
is just an request to jvm to execute gc, you cannot 100% be sure that it will get executed upon System.gc()
invocation .
See Also :
Upvotes: 1