Refreshing activity on receiving gcm push notification

后端 未结 7 1289
自闭症患者
自闭症患者 2020-11-29 16:45

Update: GCM is deprecated, use FCM

How to refresh activity on receiving gcm push notification<

7条回答
  •  -上瘾入骨i
    2020-11-29 17:16

    Intent notificationIntent = new Intent(context, MainActivity.class);
    notificationIntent.setAction(Long.toString(System.currentTimeMillis()));
    PendingIntent.getActivity(context, 0, notificationIntent, PendingIntent.FLAG_UPDATE_CURRENT);
    

提交回复
热议问题