tags:

views:

20

answers:

1

Guys,

Following is my scenario,

My Activity is running on the foreground and my Activity is getting pushed to background when I hit on the home button... I am trying to display the pop up at certain intervals, in this case as my activity is running on background when I try to display the pop up but thats not shown on the foreground.

Thanks, Ramesh

+1  A: 

You can't show modal dialogs that way. Use Android's notification system instead.

smith324