我暂时使用https://github.com/ParsePlatform/PushTutorial示例代码。
当前的示例行为是
我想知道
答案 0 :(得分:1)
我不确定第四点,它对我来说不是这样的。它为我打开了同样的例子。我认为您使用的是不同的应用程序标识符,并且具有两个具有相同名称和图标的不同应用程序,但标识符不同
现在,对于您的用例,我认为推送通知不是理想的解决方案。根据您需要显示的频率和频率,您可以选择从服务器重复拉取,或者当您将应用程序拉到前台或后台时仍希望使用推送通知然后subscribe/unsubscribe from a Push Notification Channel。
即,当应用程序在前台(onStart()/ onResume())时,订阅一个频道:
PushService.subscribe(context, "foregroundPush", YourActivity.class);
当应用程序移动到后台(onStop()/ onResume()/ onDestroy())时,取消订阅相同的频道:
PushService.unsubscribe(context, "foregroundPush", YourActivity.class);
每当您需要将应用程序发送到设备的推送通知时,请使用频道'foregroundPush'