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)
Asked
Active
Viewed 2,138 times
1 Answers
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
-
This answer mean it will create new activity. could you put the code notifications pop up? thanks. – Huy Tower Aug 28 '15 at 01:59