Advertisement
Guest User

Untitled

a guest
Apr 16th, 2014
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. public void KillStatusBar() {
  2.  
  3. Process proc = null;
  4.  
  5. String ProcID = "79"; // HONEYCOMB AND OLDER
  6.  
  7. if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.ICE_CREAM_SANDWICH) {
  8. ProcID = "42"; // ICS AND NEWER
  9. }
  10. if(Build.VERSION.SDK_INT>Build.VERSION_CODES.JELLY_BEAN_MR2){
  11. return;
  12. }
  13.  
  14. getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
  15.  
  16. View decorView = getWindow().getDecorView();
  17. decorView.setSystemUiVisibility(View.SYSTEM_UI_FLAG_FULLSCREEN);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement