收到推送通知后如何触发操作

How to trigger an action once the push notification is received

我想使用 java 构建一个 android 应用程序。我将使用 GCM 发送推送通知。但是,我不确定我们是否可以使用推送通知作为触发器。所以我想做这样的事情:

如果从另一台设备收到推送通知, 使布尔值为真, 使用这个布尔值并触发一个动作。

我只是想看看是否可行。我还没有开始编码。谢谢。

是的,您应该将 FCM 用作 Google deprecated GCM

使用 FCM,您可以接收通知并在您的设备中触发操作。

您需要在清单中注册服务:

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

然后创建扩展 FirebaseMessagingService 的 class MyFirebaseMessagingService 并覆盖 onMessageReceived 方法:

@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());
    }

    // Trigger any actions that you want.
}

更多信息,请查看official documentation