当活动处于后台时,Firebase通知不起作用 [英] Firebase notification is not working when activity is in background or not

查看:394
本文介绍了当活动处于后台时,Firebase通知不起作用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有与Firebase示例代码提供的相同的代码。当活动处于前台状态或打开状态时,它工作正常。但是,当活动被关闭或在后台状态,那么它不能正常工作。问题就是这样...


  1. 应用程序图标不显示应用程序。

  2. $ b
  3. 默认情况下将应用程序名称作为通知的标题


当应用程序处于后台状态或未在设备上打开时间通知,则LogCat显示以下详细信息:

  09-16 15:55:56.056 12113 -12113 / com.testdemofb D / FirebaseApp:com.google.firebase.auth.FirebaseAuth未链接。跳过初始化。 
09-16 15:55:56.089 12113-12113 / com.testdemofb D / FirebaseApp:com.google.firebase.crash.FirebaseCrash未链接。跳过初始化。
09-16 15:55:56.176 12113-12113 / com.testdemofb I / FA:应用测量正在启动,版本:9452
09-16 15:55:56.177 12113-12113 / com。 testdemofb I / FA:启用调试日志记录运行:adb shell setprop log.tag.FA VERBOSE
09-16 15:55:56.286 12113-12113 / com.testdemofb I / FirebaseInitProvider:FirebaseApp初始化成功
09-16 15:55:56.518 12113-12147 / com.testdemofb I / FA:找不到代码管理器,因此不会使用

如果有任何解决方案,那么帮助我



谢谢...

MyFirebaseMessagingService.java

  package com.testdemofb; 

导入android.app.Notification;
导入android.app.NotificationManager;
导入android.app.PendingIntent;
导入android.content.BroadcastReceiver;
导入android.content.Context;
导入android.content.Intent;
导入android.graphics.Bitmap;
导入android.graphics.BitmapFactory;
导入android.graphics.Color;
导入android.media.RingtoneManager;
导入android.net.Uri;
导入android.support.v4.app.NotificationCompat;
导入android.util.Log;
导入android.widget.Toast;

导入com.google.firebase.messaging.FirebaseMessagingService;
导入com.google.firebase.messaging.RemoteMessage;

public class MyFirebaseMessagingService extends FirebaseMessagingService {

private static final String TAG =MyFirebaseMsgService;

$ b @覆盖
public void onMessageReceived(RemoteMessage remoteMessage){

//检查消息是否包含数据有效载荷。 (remoteMessage.getData()。size()> 0){
Log.d(TAG,Message data payload:+ remoteMessage.getData());
sendNotification(remoteMessage.getData()。get(title));
}

//检查消息是否包含通知负载。
if(remoteMessage.getNotification()!= null){
Log.d(TAG,Message Notification Body:+ remoteMessage.getNotification()。getBody());
Log.d(TAG,Message Notification BodyLocalize:+ remoteMessage.getNotification()。getBodyLocalizationKey());
Log.d(TAG,Message Notification Title:+ remoteMessage.getNotification()。getTitle());
Log.d(TAG,Message Notification TitleLocalize:+ remoteMessage.getNotification()。getTitleLocalizationKey());
sendNotification(remoteMessage.getNotification()。getBody());




$ b 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);
位图bm = BitmapFactory.decodeResource(getResources(),R.mipmap.ic_launcher);
NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this)
.setLargeIcon(bm)
.setSmallIcon(R.mipmap.ic_launcher)
.setContentTitle(Title)
.setContentText(messageBody)
.setAutoCancel(true)
.setSound(defaultSoundUri)$ b $ .setContentIntent(pendingIntent);

NotificationManager notificationManager =
(NotificationManager)getSystemService(Context.NOTIFICATION_SERVICE);

notificationManager.notify(0 / *通知的ID * /,notificationBuilder.build());





AndroidManifest.xml文件就像这样在 application 标记之间...

 < service android:name =。MyFirebaseMessagingService
android:process =remote>
< intent-filter>
< action android:name =com.google.firebase.MESSAGING_EVENT/>
< / intent-filter>
< / service>

< service android:name =。MyFirebaseInstanceIDService>
< intent-filter>
< action android:name =com.google.firebase.INSTANCE_ID_EVENT/>
< / intent-filter>
< / service>


解决方案

FCM使用两种类型的消息,即。通知和数据。详细了解此处。我想你正在发送一个通知。你需要发送一个数据信息。



类似这样的。

  {
to:bk3RNwTe3H0:CI2k_HHwgIpoDKCIZvvDMExUdFQ3P1 ...,
data:{
Nick:Mario,
body:great匹配!,
房间:PortugalVSDenmark
},
}


I have same coding as provided by firebase sample code. It works fine when activity is in foreground state or opened. But when activity is closed or in background state then it does not work properly. Problem is like that...

  1. App icon is not shown of application.

  2. By default take app name as a title of notification

And when app is in background state or not opened on device that time notification occurs then LogCat shows following details :

09-16 15:55:56.056 12113-12113/com.testdemofb D/FirebaseApp: com.google.firebase.auth.FirebaseAuth is not linked. Skipping initialization.
09-16 15:55:56.089 12113-12113/com.testdemofb D/FirebaseApp: com.google.firebase.crash.FirebaseCrash is not linked. Skipping initialization.
09-16 15:55:56.176 12113-12113/com.testdemofb I/FA: App measurement is starting up, version: 9452
09-16 15:55:56.177 12113-12113/com.testdemofb I/FA: To enable debug logging run: adb shell setprop log.tag.FA VERBOSE
09-16 15:55:56.286 12113-12113/com.testdemofb I/FirebaseInitProvider: FirebaseApp initialization successful
09-16 15:55:56.518 12113-12147/com.testdemofb I/FA: Tag Manager is not found and thus will not be used

if any solution for that then help me

Thanks...

MyFirebaseMessagingService.java

package com.testdemofb;

import android.app.Notification;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.graphics.Color;
import android.media.RingtoneManager;
import android.net.Uri;
import android.support.v4.app.NotificationCompat;
import android.util.Log;
import android.widget.Toast;

import com.google.firebase.messaging.FirebaseMessagingService;
import com.google.firebase.messaging.RemoteMessage;

public class MyFirebaseMessagingService extends FirebaseMessagingService {

private static final String TAG = "MyFirebaseMsgService";


@Override
public void onMessageReceived(RemoteMessage remoteMessage) {

    // Check if message contains a data payload.
    if (remoteMessage.getData().size() > 0) {
        Log.d(TAG, "Message data payload: " + remoteMessage.getData());
        sendNotification(remoteMessage.getData().get("title"));
    }

    // Check if message contains a notification payload.
    if (remoteMessage.getNotification() != null) {
        Log.d(TAG, "Message Notification Body: " + remoteMessage.getNotification().getBody());
        Log.d(TAG, "Message Notification BodyLocalize: " + remoteMessage.getNotification().getBodyLocalizationKey());
        Log.d(TAG, "Message Notification Title: " + remoteMessage.getNotification().getTitle());
        Log.d(TAG, "Message Notification TitleLocalize: " + remoteMessage.getNotification().getTitleLocalizationKey());
        sendNotification(remoteMessage.getNotification().getBody());
    }


}

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);
    Bitmap bm = BitmapFactory.decodeResource(getResources(), R.mipmap.ic_launcher);
    NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this)
            .setLargeIcon(bm)
            .setSmallIcon(R.mipmap.ic_launcher)
            .setContentTitle("Title")
            .setContentText(messageBody)
            .setAutoCancel(true)
            .setSound(defaultSoundUri)
            .setContentIntent(pendingIntent);

    NotificationManager notificationManager =
            (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);

    notificationManager.notify(0 /* ID of notification */, notificationBuilder.build());

}
}

AndroidManifest.xml file put like this between application tag...

    <service android:name=".MyFirebaseMessagingService"
        android:process="remote">
        <intent-filter>
            <action android:name="com.google.firebase.MESSAGING_EVENT" />
        </intent-filter>
    </service>

    <service android:name=".MyFirebaseInstanceIDService" >
        <intent-filter>
            <action android:name="com.google.firebase.INSTANCE_ID_EVENT" />
        </intent-filter>
    </service>

解决方案

There are two types of messages that FCM uses, viz. notification and data. Read more about it here. I think you are sending a notification. You need to send a data message.

Something like this.

{
"to" : "bk3RNwTe3H0:CI2k_HHwgIpoDKCIZvvDMExUdFQ3P1...",
   "data" : {
 "Nick" : "Mario",
 "body" : "great match!",
 "Room" : "PortugalVSDenmark"
},
}

这篇关于当活动处于后台时,Firebase通知不起作用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆