GCM send image instead of message

后端 未结 4 1006
无人共我
无人共我 2020-12-11 05:10

I\'m an Android newbie, and I\'m using Google GCM to send a plain text message. Is it possible to send an image file as stream or by some other method?

Java -

4条回答
  •  借酒劲吻你
    2020-12-11 05:39

    You can only send key/value pairs with total size up to 4096 bytes. Even if you manage to encode an image within a string parameter, it would be a tiny image. An alternative is to send a string that refers to the image location, either a local file name on your device or a URL that you can access to download the image when you handle the notification.

提交回复
热议问题