NotificationCompat.InboxStyle的地址不起作用

时间:2014-08-13 14:19:14

标签: android android-intent notifications android-pendingintent

我正在尝试创建一个聊天应用程序,我的用户将收到通知。通知量如此之高,如果我为每个通知创建一个条目,那么它将填满所有地方,所以我想到应用BigTextView通知或堆栈通知。

我在下面写了一段代码:

NotificationManager notificationManager = (NotificationManager)
        this.getSystemService(Context.NOTIFICATION_SERVICE);
if(listMessage.size() <= 5)
listMessage.add(messagetype + ":" + msg);
else
{
     listMessage.remove(4);
     listMessage.add(messagetype + ":" + msg);
}
Intent notificationIntent = new Intent(this, GcmActivity.class);
notificationIntent.putExtra("title", messagetype);
notificationIntent.putExtra("message", msg);
PendingIntent intent = PendingIntent.getActivity(this, 0,notificationIntent, 0);
notificationIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP
        | Intent.FLAG_ACTIVITY_SINGLE_TOP);
    NotificationCompat.Builder mBuilder;
        mBuilder =
                new NotificationCompat.Builder(this)
                        .setSmallIcon(R.drawable.ic_launcher)
                        .setContentTitle("My MESSENGER")
                        .setStyle(new NotificationCompat.BigTextStyle()
                                .bigText("MESSAGES"))
                        .setContentText(msg)
                        .setAutoCancel(true)
                        .setLights(Color.WHITE, 1000, 5000)
                        .setDefaults(Notification.DEFAULT_VIBRATE |
                                Notification.DEFAULT_SOUND | Notification.DEFAULT_LIGHTS)
                        .setContentIntent(intent);

        NotificationCompat.InboxStyle inboxStyle =
                new NotificationCompat.InboxStyle();

        inboxStyle.setBigContentTitle("MESSAGES");
        for(int j= 0;j < listMessage.size();j++)
        {

            inboxStyle.addLine(listMessage.get(j));
        }

        mBuilder.setStyle(inboxStyle);
        notificationManager.notify(0, mBuilder.build());

这似乎不会在通知中添加行。它只显示 setContentText ,它什么也没显示。

1 个答案:

答案 0 :(得分:6)

您可能没有扩展的通知视图。 你需要在通知中向下滑动(用两根手指效果更好)。