gpt4 book ai didi

android - Parse.com 推送通知问题。取消订阅不起作用,仍在接收推送通知。(Android)

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:25:25 25 4
gpt4 key购买 nike

我制作了一个使用 Parse.com 推送通知的应用程序。我有一个设置页面,您可以在其中启用/禁用推送通知。设置页面运行良好,它更改了使用的首选项,但推送通知不会停止。

这是我订阅/取消订阅的代码:

SharedPreferences sharedPrefs = PreferenceManager.getDefaultSharedPreferences(this);
pushNotificationsPreference = sharedPrefs.getBoolean("PUSH_NOTIFICATION_PREFERENCE", true);

if (pushNotificationsPreference) {
ParsePush.subscribeInBackground("Android", new SaveCallback() {
@Override
public void done(ParseException e) {
if (e != null) {
Log.d("com.parse.push", "successfully subscribed to the broadcast channel.");
} else {
Log.e("com.parse.push", "failed to subscribe for push" + e);
}
}
});
} else {
ParsePush.unsubscribeInBackground("Android", new SaveCallback() {
@Override
public void done(ParseException e) {
if (e != null) {
Log.d("com.parse.push", "successfully subscribed to the broadcast channel.");
} else {
Log.e("com.parse.push", "failed to unsubscribe for push" + e);
}
}
});

}

如果“pushNotificationsPreference”为 false,它会调用方法“ParsePush.unsubscribeInBackground("Android", new SaveCallback()"),但它不会订阅,我仍在接收它们。

我上了 Parse.com,我只在“Android” channel 注册了。

我错过了什么吗?

最佳答案

只需添加

if (e == null) {
ParseInstallation.getCurrentInstallation().saveInBackground();
}

进入 ParsePush.unsubscribeInBackground(...)done()

关于android - Parse.com 推送通知问题。取消订阅不起作用,仍在接收推送通知。(Android),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26816573/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com