通知の送信に成功しましたが、アプリが開いているかバックグラウンドで実行されているときにのみ通知が表示されるという問題があります。アプリが完全に閉じているときに、通知をプッシュしてステータスバーに表示する必要があります????? .
私は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を使用しています