Skip to content

Instantly share code, notes, and snippets.

@ixiyang
Created September 12, 2014 06:21
Show Gist options
  • Save ixiyang/88666435c474dcf3ac5f to your computer and use it in GitHub Desktop.
Save ixiyang/88666435c474dcf3ac5f to your computer and use it in GitHub Desktop.
Configuration is useful
// stop landscape on QVGA/HVGA
int screenSize = getResources().getConfiguration().screenLayout
& Configuration.SCREENLAYOUT_SIZE_MASK;
if (screenSize == Configuration.SCREENLAYOUT_SIZE_SMALL) {
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment