0

I want show Viber like home screen pop up when Push notification received by my application, I google it but did not get the answer. My requirement is like this How to implement 'pop up box' in Android similar to Viber (when a message is received)

Community
  • 1
  • 1
SS Akhtar
  • 346
  • 2
  • 11

1 Answers1

2

Here I am answering to question as I got solution.

In GCMIntentService Class

while creating intent add the following code to show the Intent as Viber does.

intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
this.getApplicationContext().startActivity(intent);

This will show the intent immediately irrespective to the App State. Thanks

SS Akhtar
  • 346
  • 2
  • 11