It is possible to show notifications on the notification bar if the app is in fullscreen mode?

927 Views Asked by At

i have my app in fullscreen mode:

    requestWindowFeature(Window.FEATURE_NO_TITLE);
    this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);

I want to show push notifications on my app in the status bar.

Will the status bar be shown when my app receives a push notification if my app is in full screen mode?

thanks

1

There are 1 best solutions below

4
On BEST ANSWER

No..you will be able to see the notification in the Notification bar after you come to home screen from the app! (Or open the home screen, by clicking the Home button). You won't be able to see the notification if your app is in fullscreen.