Skip to content

Instantly share code, notes, and snippets.

@hitherejoe
Created March 16, 2016 22:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hitherejoe/9c349142a96d10821c8c to your computer and use it in GitHub Desktop.
Save hitherejoe/9c349142a96d10821c8c to your computer and use it in GitHub Desktop.
@Override
public void onPictureInPictureChanged(boolean inPictureInPicture) {
if (inPictureInPicture) {
mUiControls.setVisibility(View.INVISIBLE);
} else {
mUiControls.setVisibility(View.VISIBLE);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment