Guest User

Untitled

a guest
Aug 16th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. android:configChanges="keyboardHidden|orientation|screenSize"
  2.  
  3. switch (getResources().getConfiguration().orientation) {
  4. case Configuration.ORIENTATION_PORTRAIT:
  5. setContentView(R.layout.control_layout_vertical);
  6. break;
  7. case Configuration.ORIENTATION_LANDSCAPE:
  8. setContentView(R.layout.control_layout_horizontal);
  9. break;
  10. }
Add Comment
Please, Sign In to add comment