I want my app to run in full-screen mode on devices running Android 4.4.
I have set View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION
for my view and it runs in full-screen.
The problem is when I show a ProgressDialog
. Then the app exits full-screen mode and the navigation buttons at the bottom are visible agin.
Is it possible for an app to remain in full-screen mode when a progress dialog is shown?