gpt4 book ai didi

android - 如何扩展只有一个附加行的 InboxStyle 通知?

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:28:57 24 4
gpt4 key购买 nike

我按以下方式构建我的通知:

NotificationCompat.InboxStyle inboxStyle = new NotificationCompat.InboxStyle();
inboxStyle.setBigContentTitle(title);
for (int position = 0; position < onlineCounter; position++) {
inboxStyle.addLine(onlineName.get(position) + " is online now");
}

NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(getApplicationContext());
notificationBuilder.setStyle(inboxStyle);
notificationBuilder.setContentTitle(title);
notificationBuilder.setContentText(contentText);
notificationBuilder.setNumber(cursor.getCount());
notificationBuilder.setSmallIcon(R.drawable.ic_stat_notify);
notificationBuilder.setColor(getResources().getColor(R.color.notification_color));
notificationBuilder.setLargeIcon(icon);

notificationBuilder.setContentIntent(launchIntent);
notificationBuilder.setDeleteIntent(clearIntent);
notificationBuilder.setDefaults(property);
notificationBuilder.setAutoCancel(true);

当将两行或更多行附加到 inboxStyle 时,通知会展开并在打开通知抽屉时自动显示所有附加行。

2 lines appended

但是当只附加一行时,通知不会展开并且该行不可见。如何使线条自动可见?

1 line appended

最佳答案

TL;DR:在 Lollipop 上的当前实现中存在一个错误,当只添加一行而没有摘要文本时,扩展通知以显示 InboxStyle。通过在 InboxStyle 上调用 setSummaryText 或添加另一行,您可以解决该错误。

请注意,这只是通知抽屉完全打开时的错误。没有摘要文本和一行的通知可以从锁定屏幕展开。

完整答案:

对于每个通知,都有样式元素在展开状态和未展开状态下发生变化。当您使用 InboxStyle 设置样式时,您正在设置通知的展开状态。

因此有两种不同的内容需要讨论:扩展的内容文本和未扩展的内容文本。您遇到的问题是,如果不为展开的通知样式设置摘要文本字段,您无法拉开展开通知,只为 InboxStyle 添加一行,因此系统很简单显示未展开的内容文本,从不显示展开的 InboxStyle。 (对于未展开的内容文本,您可能只想说明在线人数,并将标题设置为应用程序的标题,但这是您的设计决定。)

因此,说“setContentText 在只添加一行时覆盖 InboxStyle 的内容”是不准确的。事实上,InboxStyle扩展通知样式 根本没有显示。

下面我包含了一些示例代码,这些代码应该可以清楚地区分展开状态和未展开状态:

private void generateNotification(ArrayList<String> onlineNames) {

// Every notification must have a small icon, a content title, and content text
notificationBuilder.setSmallIcon(R.drawable.icon);
notificationBuilder.setContentTitle("Unexpanded Content Title from Your Application");
notificationBuilder.setContentText(getUnexpandedContentText(onlineNames.size()));

notificationBuilder.setNumber(onlineNames.size());
notificationBuilder.setColor(getResources().getColor(R.color.accent_color));
notificationBuilder.setDefaults(Notification.DEFAULT_ALL);
notificationBuilder.setStyle(getExpandedNotificationStyle);
// Add anything else after this and notify the system

}

private Style getExpandedNotificationStyle(ArrayList<String> names) {
NotificationCompat.InboxStyle expandedNotificationStyle = new NotificationCompat.InboxStyle();
expandedNotificationStyle.setBigContentTitle("Expanded Content Title");
// There seems to be a bug in the notification display system where, unless you set
// summary text, single line expanded inbox state will not expand when the notif
// drawer is fully pulled down. However, it still works in the lock-screen.
expandedNotificationStyle.setSummaryText("Expanded notification summary Text");
for (String name : names) {
expandedNotificationStyle.addLine(name + " is online now");
}
return expandedNotificationStyle;
}

private String getUnexpandedContentText(int numOnlineFriends) {
switch (numOnlineFriends) {
case 0:
return "No friends are online";
case 1:
return "1 friend is online";
default:
return numOnlineFriends + " friends are online";
}
}

关于android - 如何扩展只有一个附加行的 InboxStyle 通知?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27800194/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com