没有动作栏的android compat黑暗活动?

lis*_*lis 8 android themes android-appcompat

如何在appcompat主题中实现没有操作栏的黑屏?我已经实现了导航抽屉,主题来自style.xml.

这是我目前的主题:

<resources>
  <style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
    <item name="android:windowDrawsSystemBarBackgrounds">true</item>
    <item name="android:statusBarColor">@android:color/transparent</item>
    <item name="android:windowTranslucentStatus">true</item>
  </style>
</resources>
Run Code Online (Sandbox Code Playgroud)

Але*_*нко 17

简单.

parent="Theme.AppCompat.NoActionBar"
Run Code Online (Sandbox Code Playgroud)