我想在每次设备连接到互联网时通知用户她/他在离线时收到的消息,即使应用程序已关闭。我发现使用 GCM 网络管理器是解决问题的一种方法,所以我按照本教程介绍了如何使用 GCM 网络管理器,我在其示例代码中添加了一个显示通知的功能。每次调用广播接收器时都会调用此函数。
这是代码
.....
.......
mLocalBroadcastManager = LocalBroadcastManager.getInstance(this);
mBroadcastReceiver = new BroadcastReceiver() {
@Override
public void onReceive(Context context, Intent intent) {
String taskId = intent.getStringExtra(CodelabUtil.TASK_ID);
String status = intent.getStringExtra(CodelabUtil.TASK_STATUS);
mTaskAdapter.updateTaskItemStatus(taskId, status);
Notify("TEST", "TEST", context, intent);
}
};
private void Notify(String notificationTitle, String notificationMessage, Context ctx, Intent intent){
Log.i("TEST", "Notify is called");
NotificationManager manager;
manager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
Notification myNotication;
//Intent intent = new Intent("com.google.codelab.networkmanager");
PendingIntent pendingIntent = PendingIntent.getActivity(ctx, 1, intent, 0);
Notification.Builder builder = new Notification.Builder(ctx);
builder.setAutoCancel(false);
builder.setContentTitle(notificationTitle);
builder.setContentText(notificationMessage);
builder.setSmallIcon(R.mipmap.ic_launcher);
builder.setContentIntent(pendingIntent);
//
//builder.build();
myNotication = builder.getNotification();
manager.notify(11, myNotication);
}
问题是通知仅在应用程序处于前台时显示,但在应用程序关闭时不显示。
有什么我需要做的吗?谢谢你。(对不起,我的英语不好)