I'm new to android and one of my activities does not require the Action Bar but I'd like to keep the Status Bar. I have this style:
<style name="AppTheme.NoActionBar">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
</style>
This removes the Action Bar as expected and the Status Bar is there but now it's unreadable (white icons on an off-white background). How can I fix this? I'd be fine with changing the background of the Status Bar to black. Minimum SDK 19