Reputation: 11
I am using this code but only navigation bar hides except it nothing hides
window.decorView.systemUiVisibility = View.SYSTEM_UI_FLAG_IMMERSIVE
window.decorView.systemUiVisibility = View.SYSTEM_UI_FLAG_FULLSCREEN
window.decorView.systemUiVisibility = View.SYSTEM_UI_FLAG_HIDE_NAVIGATION
actionBar?.hide()
Upvotes: 1
Views: 1483
Reputation: 8917
In your themes
file:
<style name="xxx" parent="Theme.MaterialComponents.DayNight.NoActionBar"> //remove action bar
<item name="android:windowFullscreen">true</item> //remove status bar
Upvotes: 1