Created
January 13, 2016 20:33
-
-
Save MaximAlien/d0f57f3b0761e254a5cc to your computer and use it in GitHub Desktop.
[Android] Check current orientation
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
if (getResources().getConfiguration().orientation == Configuration.ORIENTATION_LANDSCAPE) { | |
} else if (getResources().getConfiguration().orientation == Configuration.ORIENTATION_PORTRAIT) { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment