我在通知中遇到问题。我在PHONEGAP做我的项目。 我想在android中的推送通知中显示多行。现在我只收到单行通知。我无法扩展或对该通知做任何事情。即时通讯使用phonegap插件。
com.phonegap.plugins.PushPlugin
请帮助我克服这个问题。 屏幕截图如下。
当前通知
预期通知
答案 0 :(得分:4)
这涉及原生通知(remoteviews)中的自定义布局,因此需要修改您喜欢的插件
Android custom notification layout with RemoteViews
如果是这个插件:https://github.com/phonegap-build/PushPlugin
自定义构建器的示例:Create custom notification, android
答案 1 :(得分:3)
路径: \ platforms \ android \ src \ com \ plugin \ gcm
文件名: GCMIntentService.java
String message = extras.getString("message");
if (message != null) {
mBuilder.setContentText(message);
mBuilder.setStyle(new NotificationCompat.BigTextStyle().bigText(message));//add this line