Android Completely transparent Status Bar?

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

    add these lines into your Activity before the setContentView()

    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
        Window w = getWindow();
        w.setFlags(WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS, WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS);
    }
    

    add these 2 lines into your AppTheme

    true
    true
    

    and last thing your minSdkVersion must b 19

    minSdkVersion 19
    

提交回复
热议问题