在FCM通知背景中发送JSON

时间:2019-08-08 21:04:04

标签: java android json firebase

我知道关于这个话题有几个问题,但是我很绝望...

我正在尝试向Android手机发送可序列化对象。

打开应用程序后,Nofitication可以完美运行,但在后台运行时会显示通知,但未正确处理通知,仅显示标题。

我发送的json是:

{  


"to":"eSKuqqNvN_dkM71eJzrulCzgKn",
   "body":{           
      "mZona":"V",
      "mProvinciaCliente":"Segovia",
      "mScrapie":false,
      "mBrucelosis":false,
      "mTuberculosis":false,
      "mOtrasEnfermedades":false,
      "latitud":0.0,
      "longitud":0.0
   },
   "notification":{  
      "title":"nuevos"
   },
   "data":{  
      "mZona":"V",
      "mProvinciaCliente":"Segovia",
      "mScrapie":false,
      "mBrucelosis":false,
      "mTuberculosis":false,
      "mOtrasEnfermedades":false,
      "latitud":0.0,
      "longitud":0.0
   }
}

我处理通知的代码是:

public class MyFirebaseMessagingService extends FirebaseMessagingService {
    private static final String LOGTAG = "android-fcm";
    //    private static final int CANCELNOTIFICATIONID = 1;
    private Uri ordenUri;
private CamionLocationListener mlocListener;
private LocationManager mlocManager;

@Override
public void onMessageReceived(RemoteMessage remoteMessage) {
    UtilsVictor.appendLog("Ha llegado la notificaciíon");
    UtilsVictor.appendLog("Ha llegado la notificaciíon");

    LogVictor.d(LOGTAG, "INICIO NOTIFICACIONES");
    if (remoteMessage.getData() != null) {

        String titulo = remoteMessage.getNotification().getTitle();


        LogVictor.d(LOGTAG, "NOTIFICACION RECIBIDA");
        LogVictor.d(LOGTAG, "Título: " + titulo);
        UtilsVictor.appendLog("Título: " + titulo);
        LogVictor.d(LOGTAG, "Texto: " + texto);
        UtilsVictor.appendLog("texto: " + texto);






            generateNotificationInsertarOrden(getApplicationContext(), texto,remoteMessage.getData());


        showNotification22_10_2018(titulo, "NOTIFICACION"  , "IDo", this);
    }
}
Orden mOrden = new Orden();


private void generateNotificationInsertarOrden(Context context, String message, Map<String, String> data) {
    try{
        if(null!=message){


            Gson gson = new Gson();
            String json = gson.toJson(message);
            JSONObject jO = new JSONObject(data);
            mOrden = gson.fromJson(jO.toString(),Orden.class);


                ordenUri = insertarOrdenRecibidaEnBD(mOrden);

            Log.v("INSERTADA DE NOTCION:", mOrden.getmId() + ".");

            TareaCambiarEstadoOrdenEnBDServerPorIdOrdenYEstadoString tareaCambiarEstadoOrdenEnBDServerPorIdOrdenYEstadoString = new TareaCambiarEstadoOrdenEnBDServerPorIdOrdenYEstadoString(mOrden.getmID(), Estados.RECIBIDA);


            tareaCambiarEstadoOrdenEnBDServerPorIdOrdenYEstadoString.execute("");
            int icon = R.drawable.ic_launcher;
            long when = System.currentTimeMillis();
            String appname = context.getResources().getString(R.string.app_name);
            NotificationManager notificationManager = (NotificationManager) context
                    .getSystemService(Context.NOTIFICATION_SERVICE);

            Intent notificationIntent = new Intent(this, OrdenesOverviewActivity.class);
            notificationIntent.putExtra(MyOrdenContentProvider.CONTENT_ITEM_TYPE, ordenUri);

            notificationIntent.putExtra("ordenJSON", message);
            notificationIntent.putExtra("ESTADO",Estados.NUEVO);
            notificationIntent.putExtra("uriPasada",ordenUri);
            Notification notification;
            PendingIntent contentIntent = PendingIntent.getActivity(context,PendingIntent.FLAG_CANCEL_CURRENT,
                    notificationIntent, 0);

            NotificationCompat.Builder builder = new NotificationCompat.Builder(
                    context);
            //  Uri alarmSound = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_ALARM);
            //  Uri alarmSound = Uri.parse("android.resource://" + getPackageName() + "/raw/sonidoorden.mp3");
            Uri alarmSound = Uri.parse("android.resource://es.grainsa.appmovil/"  + R.raw.sonidoorden);
            notification = builder.setContentIntent(contentIntent)
                    .setSmallIcon(icon).setTicker(appname).setWhen(0)
                    .setAutoCancel(true).setContentTitle(appname)
                    .setVibrate(new long[] {1000, 1000, 1000})
                    .setContentText("hay un NUEVO Aviso" + mOrden.getmID()).setSound(alarmSound).build();

            notificationManager.notify(0 , notification);
        }
    } catch (Exception e){



    }

}

}

我如何在后台管理JSON?

非常感谢您的回答!

1 个答案:

答案 0 :(得分:1)

消息有2种“类型”。
通知,其中包含通知有效负载/对象。
没有通知对象的数据消息

当应用程序在后台运行时,如果消息中有通知,则系统会处理它……而不是您的onMessageRecieved()侦听器。

要同时获取前台和后台数据,请仅发送“数据消息”,并在应用程序的onMessageRecieved()中创建通知(如果需要)。

Create Notification | Android

即而是传递数据有效负载中具有的“ Notification:title”,然后在onMessageRecieved()中对其进行解析以创建Notification。

iOS用户在后台运行时始终需要通知有效负载来触发应用程序“已接收消息”的侦听器。在这种情况下,我的工作是收集Firebase令牌和平台(iOS / Android / Web),并在发送Push消息时相应地对待它们。