0

我使用 Java pns 来推送我的应用程序,这就是我使用它的方式:

    public static PushedNotifications Push(String token,String message,String Sound,int badge) throws CommunicationException, KeystoreException{    
         String key=PushUtil.class.getResource("cert.p12").getPath();
         PushedNotifications pn= Push.combined(message, badge, Sound, key, "Pass", true, token);
         System.out.println("pn: "+pn);
         return pn;         
    }

有没有办法发送通知以增加徽章而不是仅仅设置它?

4

1 回答 1

2

不是我知道的。徽章编号只是一个替代品。如果它旨在反映某种状态,则应在服务器中维护该状态,并始终推送绝对值。

于 2012-08-01T14:01:59.793 回答