Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a native android way to get a reference to the currently running Activity from a service?

I have a service running on the background, and I would like to update my current Activity when an event occurs (in the service). Is there a easy way to do that (like the one I suggested above)?

share|improve this question

4 Answers

up vote 23 down vote accepted

Is there a native android way to get a reference to the currently running Activity from a service?

You may not own the "currently running Activity".

I have a service running on the background, and I would like to update my current Activity when an event occurs (in the service). Is there a easy way to do that (like the one I suggested above)?

  1. Send a broadcast Intent to the activity -- here is a sample project demonstrating this pattern
  2. Have the activity supply a PendingIntent (e.g., via createPendingResult()) that the service invokes
  3. Have the activity register a callback or listener object with the service via bindService(), and have the service call an event method on that callback/listener object
  4. Send an ordered broadcast Intent to the activity, with a low-priority BroadcastReceiver as backup (to raise a Notification if the activity is not on-screen) -- here is a blog post with more on this pattern
share|improve this answer
Thanks, but as I do have a looot of activities, and don't want to update them all, I was looking for an android way to get the foregroundActivity. As you say, I should not be able to do that. Means I have to get my way around this. – George Oct 7 '10 at 11:36
@George: What you want wouldn't help you, anyway. As you point out, you have "a looot of activities". Hence, those are all separate classes. Hence, there is nothing your service can do with them without either a massive if-block of instanceof checks or refactoring the activities to share a common superclass or interface. And if you're going to refactor the activities, you may as well do it in a way that fits better with the framework and covers more scenarios, such as none of your activities being active. #4 is probably the least work and most flexible. – CommonsWare Oct 7 '10 at 11:43
   
Thanks, but I have a better solution. All my activities extends a customised BaseActivity class. I have set a ContextRegister that registeres the activity as current whenever it is on the foreground, with literraly 3 lines in my BaseActivity class. Still, thanks for the support. – George Oct 8 '10 at 12:33
@George: Watch out for memory leaks. Mutable static data members are to be avoided in Java wherever possible. – CommonsWare Oct 8 '10 at 13:06
I have tightly encapsualted the object, though I will indeed keep this in mind. Thanks. – George Oct 8 '10 at 13:22

Here's a good way to do it using the activity manager. You basically get the runningTasks from the activity manager. It will always return the currently active task first. From there you can get the topActivity.

Example here

There's an easy way of getting a list of running tasks from the ActivityManager service. You can request a maximum number of tasks running on the phone, and by default, the currently active task is returned first.

Once you have that you can get a ComponentName object by requesting the topActivity from your list.

Here's an example.

ActivityManager am = (ActivityManager) this.getSystemService(ACTIVITY_SERVICE);



     // get the info from the currently running task
     List< ActivityManager.RunningTaskInfo > taskInfo = am.getRunningTasks(1); 

     Log.d("topActivity", "CURRENT Activity ::"
             + taskInfo.get(0).topActivity.getClassName());

     ComponentName componentInfo = taskInfo.get(0).topActivity;
   componentInfo.getPackageName();

You will need the following permission on your manifest:

uses-permission android:name="android.permission.GET_TASKS"
share|improve this answer
Your answer is 100% correct.Thanxx 4 it.Its better that u post the same answer here – Shahzad Imam Apr 28 '12 at 10:44
thank you Shahzad, Updated as per your suggestion. – Nelson Ramirez Apr 29 '12 at 21:49
Will this work even with the ability for multiple fragments to present at once? – ArtOfWarfare Sep 7 '12 at 18:17
@ArtOfWarfare haven't verified but yes, the number of fragments you have is irrelevant as they are always hosted by a single activity. – Nelson Ramirez Sep 9 '12 at 0:59
If i need the current activity more frequently, I have to poll very frequently right? Is there a way to get a callback event whenever the foreground activity changes? – nizam.sp Mar 28 at 20:42

You might check out ActivityManager, also take a look at DroidFu. They keep a WeakReference to the active context in their overridden Application.

share|improve this answer

I've found answer for similar issue here

But it doesn't help me because I use MonoDroid and it doesn't have ActivityThread.

share|improve this answer
ActivityThread is for the platform developers (i.e. those who modifies the Android source), not for the regular SDK developers. – Idolon May 8 '12 at 14:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.