Skip to content

Instantly share code, notes, and snippets.

@Synesso
Created January 5, 2015 04:53
Show Gist options
  • Select an option

  • Save Synesso/042f6c7287b0c6365bee to your computer and use it in GitHub Desktop.

Select an option

Save Synesso/042f6c7287b0c6365bee to your computer and use it in GitHub Desktop.
void rotate() {
final MainActivity activity = getActivity();
activity.setRequestedOrientation(
activity.getRequestedOrientation() == ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE
? ActivityInfo.SCREEN_ORIENTATION_PORTRAIT
: ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment