我在我的应用上实现了解析推送通知的android通知。但最近我意识到kitkat上没有显示通知内容。它只在OS Lollipop上显示。
这里是图像...
在Kitkat 4.4.4上:
在Lollipop 5.0上:
两个图像的代码相同:
NotificationCompat.InboxStyle inboxStyle = new NotificationCompat.InboxStyle();
NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(mContext);
Notification notification = mBuilder.setSmallIcon(smallIcon).setTicker(title) //title
.setWhen(System.currentTimeMillis())
.setAutoCancel(true)
.setContentTitle(title)
.setStyle(inboxStyle)
.setContentIntent(resultPendingIntent)
.setSound(RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION))
.setLargeIcon(BitmapFactory.decodeResource(mContext.getResources(), icon))
.setContentText(notifMessage)
.build();
NotificationManager notificationManager = (NotificationManager) mContext
.getSystemService(Context.NOTIFICATION_SERVICE);
notificationManager.notify(mNotificationId, notification);
获取信息,我使用构建工具23.0.2(编写此问题时最新)。这是我的app build.gradle:
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
...
与众不同的是什么? 任何帮助将不胜感激。提前谢谢
答案 0 :(得分:2)
解决。仅替换此部分:
.setWhen(System.currentTimeMillis())
这一个:
.setWhen(0)
我不知道&不在乎为什么会这样。我认为这是一个错误