Advertisement
Guest User

Untitled

a guest
Apr 2nd, 2015
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. @Override
  2. public void onConfigurationChanged(Configuration newConfig) {
  3. super.onConfigurationChanged(newConfig);
  4.  
  5. if (newConfig.orientation == Configuration.ORIENTATION_PORTRAIT) {
  6. setContentView(R.layout.activity_splash);
  7. }
  8.  
  9. else if (newConfig.orientation == Configuration.ORIENTATION_LANDSCAPE) {
  10. setContentView(R.layout.activity_splash);
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement