Skip to content

Instantly share code, notes, and snippets.

@ajamaica
Created February 5, 2015 19:29
Show Gist options
  • Save ajamaica/aea267ff5bb5b46ef02d to your computer and use it in GitHub Desktop.
Save ajamaica/aea267ff5bb5b46ef02d to your computer and use it in GitHub Desktop.
giro android
@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