2016-09-26 3 views

답변

1

해결되었습니다. onNotificationProcessing 이벤트에서 미리 알림 값을 변경할 수 있습니다.

protected boolean onNotificationProcessing(OSNotificationReceivedResult receivedResult) { 
    OverrideSettings overrideSettings = new OverrideSettings(); 
    overrideSettings.extender = new NotificationCompat.Extender() { 
     @Override 
     public NotificationCompat.Builder extend(NotificationCompat.Builder builder) { 
      builder.setContentText.... 
      builder.setContentTitle... 
     } 
    } 
} 
+0

당신이 대답을 받아 들여야합니다. – Zarwan