gpt4 book ai didi

android - Android通知上的表情符号

转载 作者:太空狗 更新时间:2023-10-29 15:28:17 25 4
gpt4 key购买 nike

我正在尝试在通知栏上显示表情符号。

这是我的字符串:

"\ue057 " + getString(R.string.notification_sent_hey)

我已经尝试过使用 softbank,以及所有可能的格式:"U+1F601"、"\xF0\x9F\x98\x81"

我该怎么办?

谢谢。

最佳答案

你不能那样做。通知有布局,您被迫使用该布局。

一个大图标、文本和一个小图标。就是这样。这里说得很清楚了:http://developer.android.com/design/patterns/notifications.html

因此,您可以按照此处解释的示例进行操作:http://developer.android.com/training/wearables/notifications/creating.html

例如:

NotificationCompat.Builder notificationBuilder =
new NotificationCompat.Builder(this)
.setSmallIcon(R.drawable.ic_event)
.setContentTitle(eventTitle)
.setContentText(eventLocation)
.setLargeIcon(R.drawable.ic_event2);
.setContentIntent(viewPendingIntent);

// Get an instance of the NotificationManager service
NotificationManagerCompat notificationManager =
NotificationManagerCompat.from(this);

// Build the notification and issues it with notification manager.
notificationManager.notify(notificationId, notificationBuilder.build());

关于android - Android通知上的表情符号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24747886/

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