Advertisement
Guest User

ini fik

a guest
Jan 29th, 2020
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. //jika hanya ganti warna background
  2. Window window;
  3.  
  4. window = this.getWindow();
  5. window.setStatusBarColor(this.getResources().getColor(R.color.colorPrimary));
  6.  
  7.  
  8. //jika ganti warna background menjadi putih dan icon jadi hitam
  9. Window window;
  10.  
  11. window = this.getWindow();
  12. window.setStatusBarColor(this.getResources().getColor(R.color.colorBackground));
  13. if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
  14. window.getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR);
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement