我成功发送通知,但是通知仅在应用程序打开或在后台运行时显示的问题,我需要推送通知并在应用程序完全关闭时在状态栏中看到它??????.
我在 mainActivity 中使用此代码
Parse.initialize(this, "", "");
PushService.setDefaultPushCallback(this, MainActivity.class);
ParseInstallation.getCurrentInstallation().saveInBackground();
PushService.subscribe(this, "Broadcast", MainActivity.class);
并在 AndroidManifest
<receiver android:name="com.parse.ParseBroadcastReceiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
<action android:name="android.intent.action.USER_PRESENT" />
</intent-filter>
</receiver>
我使用带有 parse-1.2.3 的 phonegap cordova 2.5.0