作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我对此进行了大量研究,但遇到了瓶颈。我已经阅读了关于该主题的所有 Material (包括 this 、 this 和 this 以及文档),但没有任何东西可以帮助我完成我想做的事情。
基本上,如果应用程序在用户的手机上打开,我只需要一个通知来将用户重定向到我的应用程序中已经存在的 Activity。我使用这样的模式:
private PendingIntent buildPendingIntentForNotification(String type) {
Intent resultIntent = new Intent(this, MainActivity.class);
resultIntent.setAction(Intent.ACTION_VIEW);
resultIntent.setFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP);// have tried without this and with Intent.FLAG_ACTIVITY_CLEAR_TOP
resultIntent.putExtra(CommonUtils.NOTIFICATION_TYPE, type);
PendingIntent resultPendingIntent = PendingIntent.getActivity(getApplicationContext(), 0, resultIntent, PendingIntent.FLAG_UPDATE_CURRENT);
return resultPendingIntent;
}
我还尝试在 Activity 标签内的 Android list 中声明所有 4 种类型的启动模式。无论我做什么,单击通知(即使应用程序是屏幕上的 Activity 前台应用程序并且 MainActivity 是 Activity Activity )似乎总是从 onCreate 重新启动 Activity 。从我在调试过程中看到的情况来看,在获取通知和单击通知之间的任何时间都不会调用 onDestroy。但是,在单击通知后,即使我的 Activity 没有被销毁,也会调用 onCreate 然后调用 onDestroy,这很奇怪。我希望有人可以帮助我理解这一点,因为所有 launchMode 和 Intent.setFlags 建议都不适合我。非常感谢!
最佳答案
仅供引用,这是我用来解决问题的代码(归功于 David 的解决方案):
private PendingIntent buildPendingIntentForNotification(String type) {
Intent resultIntent = new Intent(this, MainActivity.class);
//resultIntent.setAction(Intent.ACTION_VIEW);
resultIntent.setAction(Intent.ACTION_MAIN);
resultIntent.addCategory(Intent.CATEGORY_LAUNCHER);
resultIntent.putExtra(CommonUtils.NOTIFICATION_TYPE, type);
PendingIntent resultPendingIntent = PendingIntent.getActivity(getApplicationContext(), 0, resultIntent, PendingIntent.FLAG_UPDATE_CURRENT);
return resultPendingIntent;
}
关于无论 launchMode 和/或标志设置为什么,Android 通知都会启动新的 Activity 实例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28480017/
我是一名优秀的程序员,十分优秀!