Prevent Memory Leak In Android
I'm having some troubles with memory leaks on Android. I do have a simple application with a relatively picture as background and it works fine, until I change the orientation.
Solution 1:
You could try to avoid reload your activity with this in your manifest under your activity:
android:configChanges="orientation|screenSize"
Post a Comment for "Prevent Memory Leak In Android"