我正在尝试制作一个聊天应用程序,我的用户将在其中收到通知。通知的数量如此之大,如果我为每个通知做一个条目,那么它会填满所有地方,所以我想到了应用 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 而它什么也没显示。

最佳答案

您可能没有通知的展开 View 。
您需要在通知内向下滑动(用两根手指效果更好)。

关于android - NotificationCompat.InboxStyle 的添加行不起作用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/25288622/

10-10 23:21