How to remove the shadow above the app bar?

前端 未结 4 1056
生来不讨喜
生来不讨喜 2021-02-09 10:27

I\'d like to make the status bar transparent by adding @android:color/transparent to v21/styles.xml on

4条回答
  •  余生分开走
    2021-02-09 11:10

    Call below method in the onCreate of your activity with the desired status bar color.

    public void changeStatusBarColor(String hexColor)
      {
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
            Window window = getWindow();
            window.addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
            window.setStatusBarColor(Color.parseColor("#AD2525"));
        }
     }
    

    XML

    
    
    
    
        
    
    
    
    
        
    
    
    

    Result

提交回复
热议问题