我的用例如下:
在活动 AI 调用中:
startActivity(B);
finish();
现在在 Activity BI 的 onCreate 中需要知道启动 B 的活动,所以我想知道是否在 Activity BI 调用的 onCreate(...) 中:
getIntent();
我什至能够获得启动 Activity B 的 Intent 还是 getIntent() 在那时已经返回 null 因为我在调用 startActivity(B) 后立即完成了 Activity A ?