surya
surya

Reputation: 487

android out of memory

Whether system.gc will avoid android's out of memory exception for bitmap?

Upvotes: 0

Views: 821

Answers (1)

Jigar Joshi
Jigar Joshi

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

Related Questions