您的位置:首页 > 移动开发 > Android开发

Android singleTask、startActivityForResult 冲突解决

2013-07-25 14:41 676 查看
最近项目中在A Activity 中使用startActivityForResult 去B Activity中获取一些数据,当B Activity launch mode 为 singleTask 的时候,发现一直获取不到B返回的数据,A中的 onActivityResult 方法没有被调用。查看官方文档才发现 startActivityForResult 与 onActivityResult 有冲突,如下图所示:



Note that this method should only be used with Intent protocols that are defined to return a result. In other protocols (such as
Intent.ACTION_MAIN
or
Intent.ACTION_VIEW
), you may not get the result when you expect. For example, if the activity you are launching uses the singleTask launch mode, it will not run in your task and thus
you will immediately receive a cancel result. 

解决办法:

将B的launch mode 改为singleTop,或者采取别的方法
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
相关文章推荐