【发布时间】:2016-10-04 16:33:38
【问题描述】:
我的 FirebaseMessagingService java 类有问题。当我从 Firebase 控制台发送通知时,根本不会调用 onMessageReceived 函数。但我知道我成功发送了通知,这是我的代码:
package com.nufdev.firelink.other;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.content.Context;
import android.content.Intent;
import android.media.RingtoneManager;
import android.net.Uri;
import android.support.v4.app.NotificationCompat;
import android.util.Log;
import com.google.firebase.messaging.FirebaseMessagingService;
import com.google.firebase.messaging.RemoteMessage;
import com.nufdev.firelink.MainActivity;
import com.nufdev.firelink.R;
public class MyFirebaseMessagingService extends FirebaseMessagingService {
private static final String TAG = "MyFirebaseMsgService";
/**
* Called when message is received.
*
* @param remoteMessage Object representing the message received from Firebase Cloud Messaging.
*/
// [START receive_message]
@Override
public void onMessageReceived(RemoteMessage remoteMessage) {
Log.d(TAG, "From: " + remoteMessage.getFrom());
// Check if message contains a data payload.
if (remoteMessage.getData().size() > 0) {
Log.d(TAG, "Message data payload: " + remoteMessage.getData());
}
// Check if message contains a notification payload.
if (remoteMessage.getNotification() != null) {
Log.d(TAG, "Message Notification Body: " + remoteMessage.getNotification().getBody());
sendNotification(remoteMessage.getNotification().getBody());
}
// Also if you intend on generating your own notifications as a result of a received FCM
// message, here is where that should be initiated. See sendNotification method below.
}
// [END receive_message]
/**
* Create and show a simple notification containing the received FCM message.
*
* @param messageBody FCM message body received.
*/
private void sendNotification(String messageBody) {
Intent intent = new Intent(this, MainActivity.class);
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0 /* Request code */, intent,
PendingIntent.FLAG_ONE_SHOT);
Uri defaultSoundUri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this)
.setSmallIcon(R.drawable.icon_send)
.setContentTitle("FCM Message")
.setContentText(messageBody)
.setAutoCancel(true)
.setSound(defaultSoundUri)
.setContentIntent(pendingIntent);
NotificationManager notificationManager =
(NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
notificationManager.notify(0 /* ID of notification */, notificationBuilder.build());
}
@Override
protected Intent zzaa(Intent intent) {
Log.v(TAG, "ZZZA?");
return null;
}
}
每当我从 Firebase 控制台发送通知时,我只能在控制台中看到:ZZAA?因为这个:
@Override
protected Intent zzaa(Intent intent) {
Log.v(TAG, "ZZZA?");
return null;
}
我不知道zzaa 是什么意思,也无法在 Google 上找到它。
所以,如果你能帮助我,那就太棒了。 :D
【问题讨论】:
-
您是否在 androidmanifest.xml 中添加了正确的权限?
-
是的,我添加了互联网权限并将我的课程也添加为服务...所以我真的不知道为什么不调用该函数...
-
重写 zzaa 方法有什么意义。我不确定,但如果有空检查,返回 null 应该会破坏显示消息的代码
-
我刚刚检查了源代码并且有空检查。不要覆盖它。如果我理解正确,代码是隐藏的返回值,用于在单击通知时打开意图
标签: android firebase firebase-cloud-messaging firebase-notifications