Skip to content

Instantly share code, notes, and snippets.

@Rizwanmisger
Created September 19, 2018 13:35
Show Gist options
  • Save Rizwanmisger/fdb2db88e4c9adf847837afd1102d10c to your computer and use it in GitHub Desktop.
Save Rizwanmisger/fdb2db88e4c9adf847837afd1102d10c to your computer and use it in GitHub Desktop.
public void onCreate(…){
//some UI setup
mVideoPlayer = new VideoPlayer();
getLifecycle().addObserver(mVideoPlayer);
}
public void onDestroy(){
getLifecycle().removeObserver(mVideoPlayer);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment