I have this styles.xml
<resources>
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
...
<item name="android:windowFullscreen">true</item>
...
</style>
</resources>
then use this as the theme for my app via
<manifest>
<application android:theme="@style/AppTheme"/>
</manifest>
My app goes immersive mode. The problem is the navigation bar won't go immersive. Is there a way to achieve this in manifest?
PS. I am aware of this (Set Android immersive full screen mode in manifest) question but doesn't answer my navigation bar question. Plus, the answer is old(?).