VideoView memory leak

后端 未结 4 1782
南笙
南笙 2020-12-21 03:56

Has any of you encountered a similar memory leak? This is how I\'m handling the VideoView at the moment

@Override
protected void onFinishInflate() {
    supe         


        
相关标签:
4条回答
  • 2020-12-21 04:12

    Call videoView.suspend() in onPause() or onDestory().

    0 讨论(0)
  • 2020-12-21 04:23

    When using ButterKnife with Fragments, you need to use the Unbinder in onDestroyView() to correctly dereference the Fragment's Views -- since Fragments have different life cycles to Activities.

    There is a related issue here.

    0 讨论(0)
  • 2020-12-21 04:23

    If you are using Butterknife make sure to unbind, and if you aint't make sure to call videoView.stopPlayback() in your onDestroy

    0 讨论(0)
  • 2020-12-21 04:31

    This fixed it for me within an AppCompatActivity that's not using Butterknife

    Step 1: Create a utility class

    public class AudioServiceContext extends ContextWrapper {
    
        public AudioServiceContext(Context base) {
            super(base);
        }
    
        public static ContextWrapper getContext(Context base) {
            return new AudioServiceContext(base);
        }
    
        @Override
        public Object getSystemService(String name) {
            if (Context.AUDIO_SERVICE.equals(name)) {
                return getApplicationContext().getSystemService(name);
            }
            return super.getSystemService(name);
        }
    }
    

    Step 2: within your Activity, use this utility class

    public class YourVideoActivity extends AppCompatActivity {
    
        private VideoView videoView;
    
        @Override
        protected void attachBaseContext(Context newBase) {
            super.attachBaseContext(AudioServiceContext.getContext(newBase));
        }
    
        //etc...
    }
    

    Credit: https://medium.com/@chauyan/confirmed-videoview-leak-on-android-ac502856a6cf

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