码迷,mamicode.com
首页 > 其他好文 > 详细

Calling startActivity() from outside of an Activity context requires the FLAG_ACTIVITY_NEW _TASK flag.

时间:2015-07-11 09:02:09      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:

在Activity中使用startActivity()方法不会有任何限制,因为Activity重载了Context的startActivity()方法。但是如果是在其他地方(如Widget或Service、BroadcastReceiver中)使用startActivity()方法,就会报错:

android.util.AndroidRuntimeException: Calling startActivity() from outside of an Activity  context requires the FLAG_ACTIVITY_NEW_TASK flag. Is this really what you want?

这时就需要为Intent设置一个FLAG_ACTIVITY_NEW_TASK的flag:

Intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); 

这样就不会报错了,可以顺利的startActivity()。

Calling startActivity() from outside of an Activity context requires the FLAG_ACTIVITY_NEW _TASK flag.

标签:

原文地址:http://www.cnblogs.com/diyishijian/p/4638011.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!