gpt4 book ai didi

android - FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS 使内容位于导航栏下方

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:43:50 24 4
gpt4 key购买 nike

使用以下代码会使我的布局扩展到导航栏下方。我只是想更改状态栏颜色而不弄乱布局。

int currentapiVersion = android.os.Build.VERSION.SDK_INT;
if (currentapiVersion >= android.os.Build.VERSION_CODES.LOLLIPOP){
getWindow().addFlags(WindowManager.LayoutParams.FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS);
getWindow().setStatusBarColor(this.getResources().getColor(R.color.statusbar_color));
//TRANSPARENT FOR TESTING
getWindow().setNavigationBarColor(this.getResources().getColor(android.R.color.transparent));
}

我觉得我错过了什么......

enter image description here

最佳答案

只需添加

getWindow().getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_LAYOUT_STABLE
| View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION);

它对我有用。

关于android - FLAG_DRAWS_SYSTEM_BAR_BACKGROUNDS 使内容位于导航栏下方,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26962129/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com