使用FCM的Android推送通知無法在後臺應用程序中處理。默認消息顯示在通知欄中。如何在應用程序處於具有數據負載的後臺時處理Android FCM消息?
任何人都可以幫助我如何處理後臺應用程序中的消息。
@Override
public void onMessageReceived(RemoteMessage remoteMessage) {
super.onMessageReceived(remoteMessage);
}
當應用程序處於背景該方法不被調用。任何幫助對我都有很大的幫助。
http://stackoverflow.com/a/42268901/7320259檢查此 –
這就是通知消息的工作方式......正如文檔中所述,有2種消息類型......它也是寫他們如何工作。 – Selvin
http://www.androidhive.info/2012/10/android-push-notifications-using-google-cloud-messaging-gcm-php-and-mysql/試試這個可以幫助您進行背景通知 –