Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have an app in which the main Activity starts an AlarmReceiver that calls an IntentService that runs in the background and does stuff. I'm unclear on what the correct way is to check on the IntentService's actions and present the end-user with some feedback in the visible Activity that they're in, on the IntentService's current state. In my ideal world there can be an icon somewhere on the screen that I can set to notify the user of what's going on with the IntentService. I don't need the user to be able to *do anything, just have feedback.

All advice welcome.

share|improve this question

1 Answer

up vote 4 down vote accepted

Android has a notification API, which is even easy to use - Creating Status Bar Notifications.

If you want your activity to receive updates from the service, I would suggest using broadcasts and broadcast receivers.

How to send a broadcast intent:

Intent i = new Intent("your.action");
sendBroadcast(i);

To receive this broadcast within your activity, you have to implement a broadcast receiver:

private BroadcastReceiver myReceiver = new BroadcastReceiver() {        
    @Override
    public void onReceive(Context context, Intent intent) {
        //
    }
};

which you have to register...

registerReceiver(myReceiver, new IntentFilter("your.action"));
share|improve this answer
does this receiver need to go into my manifest as well? – Dr.Dredel Mar 10 '11 at 14:47
1  
No, calling registerReceiver is enough. You should however take care to call unregisterReceiver accordingly. – Mef Mar 10 '11 at 14:55

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.