首页 > 其他 > 详细

Calling startActivity() from outside of an Activity错误

时间:2014-03-15 13:37:47      阅读:481      评论: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错误,布布扣,bubuko.com

Calling startActivity() from outside of an Activity错误

原文:http://www.cnblogs.com/mstk/p/3600875.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!