singleTask模式的Activity接收Bundle问题(深入了解LaunchMode)

本文详细解析了在使用SDKBuzzBox进行Notification推送时,如何正确实现通知点击跳转至MainActivity并传递参数。针对Activity的singleTask模式下Bundle参数丢失的问题,提供了有效的解决方案,包括重写onNewIntent()和onResume()方法。
摘要由CSDN通过智能技术生成

  项目里使用了第三方的SDK BuzzBox来实现Notification的通知推送功能。需要实现通知推送后,跳转到MainActivity,并根据点击对应NotificationMessage,在主界面显示特定Fragment。因此需要实现通知点击跳转的类并附带参数传递。
Task class中:

    notification.setNotificationClickIntentClass(YourMainActivity.class);
    Bundle b = new Bundle();
    b.putString("param", "value");
    notification.setNotificationClickIntentBundle(b));     

而一开始在MainActivity里直接这么接收Bundle:

    Bundle b = getIntent().getExtras();

结果一直是个null。
  理论上把Bundle参数传给了MainActivity,那么为什么收不到呢?其实问题在于Activity的singleTask模式中Bundle没有更新 。因为MainActivity并没有销毁,所以原来就有intent,而丢弃了新来intent,因此只要处理新来的intent就能取到参数了。方法是重写接收端Activity的onNewIntent()

@Override
    protected void onNewIntent(Intent intent) { super.onNewIntent(intent); setIntent(intent); } protected void onResume() { super.onResume(); Bundle b = getIntent().getExtras(); }

参考:
1.http://blog.csdn.net/dadoneo/article/details/8170124

转载于:https://www.cnblogs.com/lonng226/articles/4260635.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值