Hi

I have an activity that uses a service. While the service is running (it sends 
some stuff in background) I display a progress bar and disable the send 
button.

Now I created an Intent to update the interface after the send service has 
finished. How can I do this only if the activity is still on top? I tried to 
figure out this in the service with: 

ActivityManager.RunningTaskInfo actManager = new 
ActivityManager.RunningTaskInfo();
ComponentName topAct = actManager.topActivity;
String name = topAct.getPackageName();

But this gives me a null pointer on last line... 


What could I do? 

Thanks in advance
Cyrill

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to