Android Context Memory Leak ListView due to AudioManager

后端 未结 8 1811
走了就别回头了
走了就别回头了 2020-12-15 05:24

I have a ListView and I would expect it to be cleared from memory when the activity finishes. However, it appears that it is leaking. When I check the Memory Du

相关标签:
8条回答
  • 2020-12-15 05:33

    This is a very basic activity that replicates the issue (on Android 4.0.3 at least)

    public class MainActivity extends Activity {
    
        int image[];
    
        @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            // setContentView(R.layout.activity_main);
            image = new int[1000 * 1500 * 4];
        }
    }
    

    As you can see there are no Views or Layots associated with activity, also I set "Silent" profile in system Sound Settings and turned off "Vibrate on touch".

    Now, after few (5-7 depending on your heapSize) restarts this activity generates the java.lang.OutOfMemoryError on trying to create new array.

    07-27 19:54:10.160  22542-22542/? D/dalvikvm﹕ GC_FOR_ALLOC freed 6K, 1% free 56040K/56391K, paused 25ms
    07-27 19:54:10.190  22542-22542/? D/dalvikvm﹕ GC_BEFORE_OOM freed 23449K, 43% free 32591K/56391K, paused 30ms
    07-27 19:54:10.260  22542-22543/? D/dalvikvm﹕ GC_CONCURRENT freed 0K, 1% free 56029K/56391K, paused 3ms+3ms
    07-27 19:54:11.850  22542-22542/? D/dalvikvm﹕ GC_FOR_ALLOC freed 6K, 1% free 56040K/56391K, paused 20ms
    07-27 19:54:11.880  22542-22542/? D/dalvikvm﹕ GC_BEFORE_OOM freed <1K, 1% free 56040K/56391K, paused 29ms
    ... Out of memory on a 24000016-byte allocation.
    

    Dumping .hprof I also saw 2 activities, one of them is being held by AudioManager.

    Calling the "Update Heap" and then Collect Garbage in Android Device Monitor really does remove the activity from memory, that is what the logcat states on this procedure

    07-27 19:44:23.150        85-85/? I/DEBUG﹕ #06  pc 000382cc  /system/lib/libdvm.so (dvmCollectGarbageInternal(GcSpec const*)+1204)
    

    I have also tried to build the release version of the apk and it behaves the same. So it is not the debugger holding the reference.

    This seems to me as a bug in Android. The workaround would be to explicitly call the image = null in OnStop() or onFinish() of the activity. This of course is not convenient.

    0 讨论(0)
  • 2020-12-15 05:34

    You can use application context to avoid leaks in this case. I don't know why but when I started to use application context the problem was gone.

    0 讨论(0)
  • 2020-12-15 05:38

    Not related to OP's leak, but for people who come in here because of AudioManager causing leak:

    If you see this leak because you are using VideoView, probably is because of this bug: https://code.google.com/p/android/issues/detail?id=152173

    VideoView never release AudioManager if video being loaded.

    the fix is, as mentioned in the link, create VideoView manually using ApplicationContext.

    Edit: this work around will work, until... if the video decoder says the video has an encoding problem. VideoView tries to pop up a AlertDialog using application context. Than a crash happens.

    The only work around I can think is to keep creating video view using activity context, and in activity.onDestroy, set AudioManager's mContext to application context using reflection.

    Note: have to get the AudioManager using activity.getSystemService(Context.AUDIO_SERVICE) rather than activity.getApplicationContext.getSystemService(Context.AUDIO_SERVICE), since AudioManager is an member variable of Context (you will get wrong instance of AudioManager if you get it from application context).

    At last, you may wonder why a member variable (AudioManager) is preventing the class (Activity) to being garbage collected. From the memory analyzer, it shows AudioManager is owned by native stack. So AudioManager somehow did not clean itself properly.

    0 讨论(0)
  • 2020-12-15 05:38

    If your application crashes for memory leak, then you can avoid this crash using try - catch(java.lang.outofmemory). The fact is that GC is called by JVM itself, so programer has no control on this. You can install your application in SD card, in this case SD card memory will be used. Memory leak will not occur.

    Just go to your manifest file, there must be version no. version name, there also must be " Install Location" , make it "preferExternal".

    0 讨论(0)
  • 2020-12-15 05:48

    The most common reason that I found in my application was due to initializing some components via the XML file. When you do that, the Activity Context gets injected but sometimes all you need is an ApplicationContext. With respect to the Web View in Android, this technique greatly helped me a lot.

    0 讨论(0)
  • 2020-12-15 05:48

    I would like to share my experience regarding the same issue, I was keeping some Activity in stack by default and not finishing them.

    For those activity, I was getting same as mentioned above in hprof report.

    Once I finished no longer used Activities, above references did not come. Just finish your activity when it is no longer required, then this issue will be resolved.

    0 讨论(0)
提交回复
热议问题