I registered my broadcast receiver like this(given below) in the manifest file. its working fine.

<receiver android:name="MyIntentReceiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
<category android:name="android.intent.category.HOME" />
</intent-filter>
</receiver>

But its stays registered through out.ie whenever the phone is booting my application starts. But I want only one time.

Meantime, I got an infromation like if it registered dynamically, we can achieve this. i.e. we can unregister it in onPause() or onDestroy() method. If its possible, please give me the code to do that. I am a newbie in this. Any help would be appreciated. Thank you.

I tried like this..but no use...

public class BeforeReboot extends Activity {   
 @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.beforereboot);
     } 
        private BroadcastReceiver myBroadcastReceiver =  new BroadcastReceiver()
        {     
            @Override            
            public void onReceive(Context context, Intent intent) 
            {   
                Intent startupBootIntent = new Intent(context,AfterRebootDynamic.class);//new class to be launched
            startupBootIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
            context.startActivity(startupBootIntent);
            }       
        };    
                  public void onResume() 
                    {    
                        super.onResume();
                        IntentFilter filter = new IntentFilter();  
                        filter.addAction("android.intent.action.BOOT_COMPLETED");  
                        filter.addCategory("android.intent.category.HOME");
                        registerReceiver(myBroadcastReceiver, filter);   
                    }     
                  public void onPause()
                    {        
                        super.onPause();               
                        unregisterReceiver(myBroadcastReceiver); 
                    }    
                  } 
link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

Checkout this question, the answer has an appropriate example.

link|improve this answer
create your BoradCastReceiver not as an inner class, but as a standalone one. – Vladimir Ivanov Apr 25 '11 at 9:42
I created a stand alone BCR..created its object and registered and unregisterd with that object..not worked..am i doing wrong.. – prijin Apr 25 '11 at 10:19
So anybody pls just give me the java code for wat i did in the <receiver> tag... – prijin Apr 26 '11 at 5:30
feedback

Your Answer

 
or
required, but never shown

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