Search code examples
androidnotificationsandroid-c2dmstatusbar

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


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


Solution

  • 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.