Created
September 12, 2014 06:21
-
-
Save ixiyang/88666435c474dcf3ac5f to your computer and use it in GitHub Desktop.
Configuration is useful
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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