在Android中单击Firebase通知时将数据发送到活动

时间:2018-09-30 08:22:25

标签: java android firebase android-intent android-notifications

在我的应用程序中,我想使用 fireBase 进行通知
我想在单击通知时(应用程序关闭时,我的意思是应用程序是background),将putExtra的数据发送到 mainActivity
我写了以下代码,但是当单击通知(在应用程序中是后台)时,却显示{strong> null (getStringExtra)为空!

MyNotificationManager类:

public class MyNotificationManager {

    private Context mCtx;
    private Uri soundUri;
    private static MyNotificationManager mInstance;

    public MyNotificationManager(Context context) {
        mCtx = context;
    }

    public static synchronized MyNotificationManager getInstance(Context context) {
        if (mInstance == null) {
            mInstance = new MyNotificationManager(context);
        }
        return mInstance;
    }

    public void displayNotification(String title, String body) {

        soundUri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);

        Intent intent = new Intent(mCtx, MainActivity.class);
        intent.putExtra("fcm_notification", "Y");

        PendingIntent pendingIntent = PendingIntent.getActivity(mCtx, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT);

        NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(mCtx, Constants.NOTIF_CHANNEL_ID)
                .setSmallIcon(R.mipmap.ic_launcher)
                .setContentTitle(title)
                .setSound(soundUri)
                .setAutoCancel(true)
                .setVibrate(new long[]{100, 200, 300, 400, 500, 400, 300, 200, 400})
                .setContentText(body)
                .setContentIntent(pendingIntent);

        NotificationManager mNotifyMgr = (NotificationManager) mCtx.getSystemService(NOTIFICATION_SERVICE);

        if (mNotifyMgr != null) {
            mNotifyMgr.notify(1, mBuilder.build());
        }
    }
}

MyFirebaseMessagingService类:

public class MyFirebaseMessagingService extends FirebaseMessagingService {

    @Override
    public void onMessageReceived(RemoteMessage remoteMessage) {
        showNotify(remoteMessage.getFrom(), remoteMessage.getNotification().getBody());
    }

    private void showNotify(String title, String body) {
        MyNotificationManager myNotificationManager = new MyNotificationManager(getApplicationContext());
        //myNotificationManager.displayNotification(title, body);
        myNotificationManager.displayNotification(title, body);
    }
}

MainActivity类:

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
if (checkIntent()) return;
}

@Override
protected void onNewIntent(Intent intent) {
    super.onNewIntent(intent);
    new Handler().postDelayed(new Runnable() {
        @Override
        public void run() {
            checkIntent();
        }
    }, 1000);
}

private boolean checkIntent() {
    String value = getIntent().getStringExtra("fcm_notification");
    Toast.makeText(context, "" + value, Toast.LENGTH_SHORT).show();

    if (value == null) return false;

    if (value.equals("Y")) {
        startActivity(new Intent(this, LandingActivity.class));
        // open one activity.

    } else if (value.equals("another thing")) {
        // open another activity.
    }

    finish();
    return true;
}

单击通知(在应用程序上为后台)时,请在Toast中向此行String value = getIntent().getStringExtra("fcm_notification");

显示消息

我该如何解决?

2 个答案:

答案 0 :(得分:0)

从控制台发送通知时,请从“高级选项”中添加自定义数据:

enter image description here

由于某些原因,firebase不允许密钥以fcm开头。您不能使用fcm_notification。使用其他密钥。

对于上图,请按以下方式接收密钥:

String value = getIntent().getStringExtra("test_key");

答案 1 :(得分:0)

尝试一下:

Intent intent = new Intent(mCtx, MainActivity.class);
intent.putExtra("EXTRA_DATA", title);

并获得:

String value = getIntent().getStringExtra("EXTRA_DATA");

更好地更改密钥。另外,似乎您需要从控制台发送数据,然后再将数据发送到另一个Activity

我已使用当前通知title检查它是否返回标题。如果返回了值,请尝试从控制台发送数据。