Created
February 5, 2015 19:29
-
-
Save ajamaica/aea267ff5bb5b46ef02d to your computer and use it in GitHub Desktop.
giro android
This file contains hidden or 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
@Override | |
public void onConfigurationChanged(Configuration newConfig) { | |
super.onConfigurationChanged(newConfig); | |
if (newConfig.orientation == Configuration.ORIENTATION_PORTRAIT) { | |
setContentView(R.layout.activity_splash); | |
} | |
else if (newConfig.orientation == Configuration.ORIENTATION_LANDSCAPE) { | |
setContentView(R.layout.activity_splash); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment