gpt4 book ai didi

android - 如何在android中的通知内容文本中显示图标和文本

转载 作者:行者123 更新时间:2023-11-29 01:14:27 24 4
gpt4 key购买 nike

我需要在我的 android 应用程序中显示通知。

我正在使用以下代码:

NotificationCompat.Builder mBuilder= new NotificationCompat.Builder(baseContext).setLargeIcon(large_icon)
.setSmallIcon(R.drawable.message_received_small_icon)
.setContentIntent(pendingIntent)
.setAutoCancel(true)
.setSound(soundUri);
.setContentTitle("New Message");
.setContentText("video");

此通知在左侧显示“已收到消息”图标。在收到的消息图标右侧,标题显示“DHan Nexus”,下方显示“照片”。

但我不想只显示“照片”字符串,而是要显示相机图标 +“照片”字符串。我还没有找到任何方法来在 setContentText() API 中显示相机图标。请帮助如何实现这一目标。我需要制作自定义布局还是任何默认方法都可以。

这是使问题更清楚的图片:

enter image description here

我尝试使用 spannableString 来同时显示图标和文本。但它看起来不起作用。

CharSequence cs = getContentIcon(text);
.setContentText(cs.toString());
private CharSequence getContentIcon(String text)
{
Drawable image = ContextCompat.getDrawable(baseContext, R.drawable.camera_icon);

image.setBounds(0, 0, image.getIntrinsicWidth(), image.getIntrinsicHeight());
// Replace blank spaces with image icon
SpannableString sb = new SpannableString(" "+text);
ImageSpan imageSpan = new ImageSpan(image, ImageSpan.ALIGN_BASELINE);
sb.setSpan(imageSpan, 0, 20, Spannable.SPAN_INCLUSIVE_INCLUSIVE);
return sb;
}

最佳答案

您可以将 RemoteViews 与自定义布局一起使用。

请注意,Android 7 Nougat 在通知方面有一些变化(我还没有深入研究)。以下代码适用于以下牛轧糖。

// for standard notification
RemoteViews views = new RemoteViews(getPackageName(), R.layout.notification_simple);

// for expanded notification
// RemoteViews bigViews = new RemoteViews(getPackageName(), R.layout.notification_expanded);

views.setImageViewBitmap(R.id.picture, YOUR_IMAGE_BITMAP_HERE);
views.setTextViewText(R.id.text, YOUR_TEXT_HERE);

NotificationCompat.Builder notificationBuilder =
new NotificationCompat.Builder(this)
.setSmallIcon(YOUR_NOTIFICATION_ICON)
.setCustomContentView(views);
// .setCustomBigContentView(bigViews); // if you've set it

notification = notificationBuilder.build();

关于android - 如何在android中的通知内容文本中显示图标和文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40737654/

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