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

I'd like to know what is the best practice/way of programmatically register a broadcast receiver. I want to register specific receivers according to user choice. As the registration is done through the manifest file, I'm wondering if there's a proper way to achieve this in code.

Thank you

Kr Miloud B.

share|improve this question

5 Answers

up vote 27 down vote accepted

It sounds like you want to control whether components published in your manifest are active, not dynamically register a receiver (via Context.registerReceiver()) while running.

If so, you can use PackageManager.setComponentEnabledSetting() to control whether these components are active:

http://developer.android.com/reference/android/content/pm/PackageManager.html#setComponentEnabledSetting(android.content.ComponentName, int, int)

Note if you are only interested in receiving a broadcast while you are running, it is better to use registerReceiver(). A receiver component is primarily useful for when you need to make sure your app is launched every time the broadcast is sent.

share|improve this answer
1  
Clever ! You got me straight. Thank you very much – CoolStraw Jan 26 '11 at 15:15

In your onCreate method you can register a receiver like this:

private BroadcastReceiver receiver;

@Overrride
public void onCreate(Bundle savedInstanceState){

  // your oncreate code

  IntentFilter filter = new IntentFilter();
  filter.addAction("SOME_ACTION");
  filter.addAction("SOME_OTHER_ACTION");

  receiver = new BroadcastReceiver() {
    @Override
    public void onReceive(Context context, Intent intent) {
      //do something based on the intent's action
    }
  }

  registerReceiver(receiver, filter);

Remember to run this in the onDestroy method:

@Override
protected void onDestroy() {
  unregisterReceiver(receiver);
}
share|improve this answer
4  
Thanks, this worked great. To send the broadcast I used the code Intent i = new Intent("SOME_ACTION"); sendBroadcast(i); – Ben Clayton Apr 7 '11 at 15:08
2  
Also don't you need to call super.onDestroy(); in onDestroy() method? – spirytus Oct 3 '12 at 2:19

One important point that people forget to mention is the life time of the Broadcast Receiver. The different of programmatically registering it from registering in AndroidManifest.xml is that the latter doesn't depend on application life time while the former does. This means that if you register in AndroidManifest.xml, you can catch the broadcasted intents even when your application is not running :)

share|improve this answer

have a look at broadcast receiver-two ways to implement.

share|improve this answer
best example so far I've found! Thanks! – Ayush Goyal May 8 at 10:41

According to Listening For and Broadcasting Global Messages, and Setting Alarms in Common Tasks and How to Do Them in Android:

If the receiving class is not registered using in its manifest, you can dynamically instantiate and register a receiver by calling Context.registerReceiver().

Take a look at registerReceiver (BroadcastReceiver receiver, IntentFilter filter) for more info.

share|improve this answer
i tried calling context.registerReceiver but its not getting called can you please look at this question stackoverflow.com/questions/13238600/… – Hunt Nov 6 '12 at 18:10

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.