gpt4 book ai didi

android - 我可以只为状态栏设置 FLAG_LAYOUT_NO_LIMITS 吗?

转载 作者:IT王子 更新时间:2023-10-28 23:54:50 33 4
gpt4 key购买 nike

我需要制作透明的状态栏。我正在使用 getWindow().addFlags(WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS) 它是我想要的状态栏。但它也会影响导航栏:它变得透明并且 getWindow().setNavigationBarColor(Color.BLACK) 什么都不做。

有没有办法只制作透明状态栏而不是导航栏?

最佳答案

这对我有用

getWindow().setFlags(
WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS,
WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS
)

styles.xml

<style name="TranslucentStatusBar" parent="Theme.AppCompat.Light.NoActionBar">
<item name="android:windowTranslucentStatus">true</item>
</style>

v21\styles.xml

<style name="TranslucentStatusBar" parent="Theme.AppCompat.Light.NoActionBar">
<item name="android:windowDrawsSystemBarBackgrounds">false</item>
<item name="android:windowTranslucentStatus">true</item>
</style>

状态栏将透明或半透明,导航栏不会

希望这会有所帮助!

关于android - 我可以只为状态栏设置 FLAG_LAYOUT_NO_LIMITS 吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33347297/

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