如何在应用程序运行时在通知栏中显示Parse Push Notification?

时间:2015-08-21 17:31:05

标签: android parse-platform push-notification

我正在使用Parse进行推送通知,我遇到的问题是,当我的应用程序正在运行时(无论是在前台还是后台),手机的操作系统都没有在通知栏中显示推送通知。我需要对通知栏上的推送显示进行哪些更改才能实现?

我的扩展Application类在onCreate()

中有以下内容
// initialize Parse SDK
Parse.initialize(this, Constants.APPLICATION_ID_DEBUG, Constants.CLIENT_KEY_DEBUG);
ParsePush.subscribeInBackground(Constants.CHANNEL, new SaveCallback() {
    @Override
    public void done(ParseException e) {
        if (e == null) {
            Logger.i(TAG, "successfully subscribed to broadcast channel");
        } else {
            Logger.e(TAG, "failed to subscribe for push: " + e);
        }
    }
});
ParseInstallation.getCurrentInstallation().saveInBackground();

我的应用系统有一个登录系统,所以我使用登录用户的ID作为订阅用户的频道。因此,在我的应用的第一个Activity中,我在onCreate()中调用以下代码片段。

private void registerNotifications() {
        List<String> arryChannel = new ArrayList<String>();
        arryChannel.add(session.id);

        ParseInstallation parseInstallation = ParseInstallation.getCurrentInstallation();
        parseInstallation.put("channels", arryChannel);
        parseInstallation.saveEventually();
}

我也有一个正常工作的自定义接收器。每次发送推送时,都会被onPushReceive方法接收,但是,我希望推送显示在通知栏中。

public class ParsePushReceiver extends ParsePushBroadcastReceiver {
    private static final String TAG = ParsePushReceiver.class.getSimpleName();

    @Override
    public void onPushOpen(Context context, Intent intent) {
        Log.i(TAG, "onPushOpen");
    }

    @Override
    protected void onPushReceive(Context context, Intent intent) {
        Log.i(TAG, "onPushReceive");
    }
}

提前致谢!

2 个答案:

答案 0 :(得分:1)

只需删除onPushReceive方法,默认行为将保留(在状态栏中显示通知)。 您收到此行为是因为如果应用程序正在运行,则Parse Push通知将调用不执行任何操作的方法{{1}}。

答案 1 :(得分:0)

我已经弄明白了。虽然Sandra提供的答案会在通知栏上显示推送通知,但它没有连接到Parse。

NotificationCompat.Builder mBuilder =
    new NotificationCompat.Builder(this)
    .setSmallIcon(R.drawable.notification_icon)
    .setContentTitle("My notification")
    .setContentText("Hello World!");

这会导致问题,因为如果单击该通知,则创建扩展ParsePushBroadcastReceiver的接收方将不会注册onPushOpen。我对所有内容的实现都是正确的,我只需要添加

super.onPushReceive(context, intent);

这将使通知显示在通知栏上并注册点击次数。

因此,请确保您的接收器看起来像这样(至少)

public class ParsePushReceiver extends ParsePushBroadcastReceiver {
    private static final String TAG = ParsePushReceiver.class.getSimpleName();

    @Override
    public void onPushOpen(Context context, Intent intent) {
        Log.i(TAG, "onPushOpen");
    }

    @Override
    protected void onPushReceive(Context context, Intent intent) {
        Log.i(TAG, "onPushReceive");
        **super.onPushReceive(context, intent);**
    }
}