我的申请存在问题。我使用一个类来管理来自Azure的推送通知,扩展NotificationsHandler.All有效,方法onReceive" catch"传入通知,使用bundle我可以从azure服务器读取json的每个字段。如果我点击通知我可以按如下方式启动活动:
fragment_richiesta_tabsV2 dettaglioTabs= new fragment_richiesta_tabsV2();
Intent myIntent = new Intent(contesto, dettaglioTabs.getClass());
contentIntent = PendingIntent.getActivity(contesto, 0,myIntent, PendingIntent.FLAG_UPDATE_CURRENT);
问题是当应用程序从最近的应用程序关闭时。通知到了,但如果我点击应用程序崩溃...我该如何解决? 感谢