Android Completely transparent Status Bar?

前端 未结 28 3115
旧时难觅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:36

    You can use the external library StatusBarUtil:

    Add to your module level build.gradle:

    compile 'com.jaeger.statusbarutil:library:1.4.0'
    

    Then you can use the following util for an Activity to make the status bar transparent:

    StatusBarUtil.setTransparent(Activity activity)
    

    Example:

提交回复
热议问题