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.

First of all, I have already tried adding flag_activity_new_task, still its not working.

Here is the flow: I have a service running that does http request on a background thread and fetches data. Whenever certain data is received, I need to display it to user(for example, an update to the app is available). For this, I use broadcast, and have setup a receiver. Everything works fine till here.

But, when I tru starting an activity from this receiver, app crashes saying:

"01-15 17:03:30.129: E/AndroidRuntime(28014): Caused by: android.util.AndroidRuntimeException: Calling startActivity() from outside of an Activity  context requires the FLAG_ACTIVITY_NEW_TASK flag. Is this really what you want?
"

Even though I have added this flag. Here are the codes:

Service part:

try
{
    JSONObject mAdDetails = mResult.getJSONObject(Tags.TAG_RPC_SMALL_AD_DETAILS);

    Intent mI = new Intent();
    mI.setAction(ReceiverAdvertSmall.INTENT_ACTION);

    mI.putExtra(AppMapKeys.KEY_AD_HEADING, mAdDetails.getString(Tags.TAG_RPC_AD_HEADING));
    mI.putExtra(AppMapKeys.KEY_AD_DESCRIPTION, mAdDetails.getString(Tags.TAG_RPC_AD_DESCRIPTION));
    mI.putExtra(AppMapKeys.KEY_AD_LINK, mAdDetails.getString(Tags.TAG_RPC_AD_LINK));

    sendBroadcast(mI);

}
catch(JSONException e)
{

}

The receiver part:

@Override
public void onReceive(Context mContext, Intent data) 
{
    Intent mI = new Intent(mContext, ActivityAdvertSmall.class);

    mI.putExtras(data.getExtras());
    mI.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);

    mContext.startActivity(data);
}

What Am I Doing Wrong? Iam unable to figure it out for last one hour.!!

Thanx in advance...

share|improve this question

4 Answers

up vote 3 down vote accepted

use

 mContext.startActivity(mI);

instead of

 mContext.startActivity(data);

for start Activity from onReceive because you are adding FLAG_ACTIVITY_NEW_TASK flag to mI intent but trying to start Activity using data intent

share|improve this answer

You should pass the intent you created to startActivity()

 mContext.startActivity(mI);
share|improve this answer

Ok....here was the stupidiest mistake I made. I wrongly used startActivity(data) instead of startActivity(mI). Closing the question.

share|improve this answer

Just pass the intent you created to startActivity()

 mContext.startActivity(mI);
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.