Skip to content

Instantly share code, notes, and snippets.

@Synesso
Created January 5, 2015 04:53
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 Synesso/042f6c7287b0c6365bee to your computer and use it in GitHub Desktop.
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