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'm using an AlarmManager to trigger an intent that broadcasts a signal. The following is my code:

    AlarmManager mgr = (AlarmManager) getSystemService(Context.ALARM_SERVICE);
    Intent i = new Intent(this, Wakeup.class);
    try
    {
        PendingIntent pi = PendingIntent.getBroadcast(this, 0, i, 0);
        Long elapsed +=  // sleep time;
        mgr.set(AlarmManager.RTC_WAKEUP, elapsed, pi);
    }
    catch(Exception r)
    {
        Log.v(TAG, "RunTimeException: " + r);
    }

I'm calling this code from an activity, so I don't know how I could be getting the following error...

ERROR/AndroidRuntime(7557): java.lang.RuntimeException: Unable to start receiver com.wcc.Wakeup: android.util.AndroidRuntimeException: Calling startActivity() from outside of an Activity context requires the FLAG_ACTIVITY_NEW_TASK flag. Is this really what you want?

share|improve this question
13  
you need to accept the guys answer below. It worked for me. – SpoiledTechie.com Apr 18 '11 at 17:09

4 Answers

What if you add this line:

...
Intent i = new Intent(this, Wakeup.class);
i.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
...
share|improve this answer
3  
yes this works. but if you want to start multiple instances of the same Activity this does not work. Since the FLAG_ACTIVITY_NEW_TASK will resume the same existing Activity – Ovidiu Latcu Sep 30 '11 at 13:16
8  
This is the answer to the question. If the submitter wants to ask a difference question, they should do so. However, this answer definitely needs to be accepted :) – DashRantic Nov 1 '11 at 3:34
2  
Add flag FLAG_ACTIVITY_Multiple_TASKS TO RESOLVE YOUR problem – Pavankumar Vijapur Dec 9 '11 at 7:50

For Multiple Instance of the same activity , use the following snippet,

Note : This snippet, i am using outside my activity. Make sure your Manifest file doesn't contain android:launchMode="singleTop|singleInstance". if needed, you can change it to android:launchMode="standard".

Intent i = new Intent().setClass(mActivity.getApplication(), TestUserProfileScreenActivity.class);  
i.setFlags(Intent.FLAG_ACTIVITY_MULTIPLE_TASK);                     
i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);  

// Launch the new activity and add the additional flags to the intent
mActivity.getApplication().startActivity(i);

This works fine for me. Hope, this saves times for someone. If anybody finds a better way, please share with us.

share|improve this answer
1  
Please understand the difference between setFlags() and addFlag() methods. All you are doing now is launching an activity with FLAG_ACTIVITY_NEW_TASK. As in the code posted by Cristian below. – DeBuGGeR Mar 21 '12 at 5:18
-------------------------------------------------------------------i.addFlag(Int‌​ent.FLAG_ACTIVITY_MULTIPLE_TASK); i.addFlag(Intent.FLAG_ACTIVITY_NEW_TASK); ------------------------------------------------------------------- i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_MULTIPLE_TASK); – DeBuGGeR Mar 21 '12 at 5:22

You didn't paste the part where you call startActivity, that's the interesting part.

You might be calling startActivity in a Service context, or in an Application context.

Print "this" to log cat before making the startActivity call, and see what it refers to, it's sometimes a case of using an inner "this" accidentally.

share|improve this answer

Try changing to this line:

PendingIntent pendingIntent = PendingIntent.getBroadcast(getContext(), 0, i, 0);
share|improve this answer

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.