Android Completely transparent Status Bar?

前端 未结 28 2732
旧时难觅i
旧时难觅i 2020-11-22 14:10

I\'ve searched the documentation but only found this: Link. Which is used to make the bar translucent? What I\'m trying to do is to make t

28条回答
  •  北海茫月
    2020-11-22 14:15

    You can use this below code.

    getWindow().getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN); 
    getWindow().setStatusBarColor(Color.TRANSPARENT);
    

    Include this layout in your main layout.

    toolbar.xml

    
    
    
              //add your color here
    
                
    
                    
    
                    
    
                
    
            
    
        
    

    Note: You can replace SDP and SSP with dp and sp respectively.

提交回复
热议问题