Android通知内容文本不会出现在OS 4.4.4 Kitkat上,但显示在OS 5.0 Lollipop上

我在我的应用程序上实现了解析推送通知的
android通知.但最近我意识到kitkat上没有显示通知内容.它只在OS Lollipop上显示.

这是图像……
在Kitkat 4.4.4上:

《Android通知内容文本不会出现在OS 4.4.4 Kitkat上,但显示在OS 5.0 Lollipop上》

在棒棒糖5.0:
《Android通知内容文本不会出现在OS 4.4.4 Kitkat上,但显示在OS 5.0 Lollipop上》

两个图像的代码相同:

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"
...

有什么区别?
任何帮助将不胜感激.提前致谢

最佳答案 解决了.仅替换此部分:

.setWhen(System.currentTimeMillis())

这一个:

.setWhen(0)

我不知道&不在乎为什么会这样.我认为这是一个错误

点赞