Android PushSharp Notification 消息修剪
Posted
技术标签:
【中文标题】Android PushSharp Notification 消息修剪【英文标题】:Android PushSharp Notification message trimming 【发布时间】:2015-02-03 10:07:21 【问题描述】:我正在使用 PushSharp 在 android 上推送通知。但在 Android 通知中心,长消息被“...”修剪。 这是通知文本修剪的图像:
http://s10.postimg.org/3uoszl7cp/notification_Length.png
我的推送通知代码:
var push = new PushBroker();
push.RegisterGcmService(new GcmPushChannelSettings("API Key here"));
foreach (Device device in lstDevices)
push.QueueNotification(new GcmNotification().ForDeviceRegistrationId(device.Token)
.WithJson("\"message\":\"" + NotificationMessage + "\",\"sound\":\"sound.caf\""));
有没有办法让通知文本换行而不修剪?
【问题讨论】:
【参考方案1】:这是在android应用程序代码中处理的,开发者决定在通知中显示多少文本以及如何处理长文本,你不能从你的代码中做到这一点
【讨论】:
以上是关于Android PushSharp Notification 消息修剪的主要内容,如果未能解决你的问题,请参考以下文章
用于 android 的 vb.net 中的 pushSharp
Android PushSharp Notification 消息修剪
如何从使用 PushSharp 发送的通知中检测 android 应用程序是不是已打开?