0

我正在尝试在 MIUI 中实现透明状态栏。

我已经尝试了从样式到窗口标志的所有方法,但没有任何效果。

截屏

主题 :

 <!-- Status bar. -->
    <item name="android:windowTranslucentStatus">true</item>
    <item name="android:windowTranslucentNavigation">true</item>
    <item name="android:windowIsTranslucent">true</item>
    <item name="windowNoTitle">true</item>
    <item name="windowActionBar">false</item>
    <item name="android:fitsSystemWindows">true</item>
    <item name="android:statusBarColor">@android:color/transparent</item>

和窗旗

 window.setFlags(
        WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS,
        WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS
    )
    val decorView = window.decorView
    decorView.fitsSystemWindows = true
    window.decorView.systemUiVisibility = View.SYSTEM_UI_FLAG_LAYOUT_STABLE or View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN or View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR
    window.statusBarColor = Color.TRANSPARENT

我还能做些什么来隐藏状态栏?

4

2 回答 2

0

or View.SYSTEM_UI_FLAG_LIGHT_STATUS_BAR从_window.decorView.systemUiVisibility = ...

于 2021-04-27T18:26:45.627 回答
0

这些资源帮助我解决了这个问题

https://medium.com/androiddevelopers/gesture-navigation-going-edge-to-edge-812f62e4e83e

还有一个codelab

https://codelabs.developers.google.com/codelabs/gesture-navigation#3

于 2021-04-28T20:19:34.073 回答