gpt4 book ai didi

android - 如何在 firemonkey Delphi XE 8 的 Android 通知栏(如 Facebook 等)中使用外部大图像?

转载 作者:太空狗 更新时间:2023-10-29 14:54:46 26 4
gpt4 key购买 nike

我知道您可以在推送通知参数中发送信息,例如消息、标题、图像 URL 等。Facebook 如何在通知区域显示您的个人资料照片和您的消息?我想在通知区域使用外部图像,所以当您将其拉下时,您会看到带有消息的个人资料图像。现在,我的只显示默认图标。我认为这可能是一个常见问题,但找不到任何东西。任何帮助都会很好。

请引用照片链接。

https://goo.gl/photos/somTJPUYNnSWpTwV9

最佳答案

您可以使用您想要的任何图像创建自定义通知。代码是这样的:

NotificationCompat.Builder mBuilder =
new NotificationCompat.Builder(getApplicationContext())
// The icon to be shown in the small view.
.setSmallIcon(R.drawable.notification_icon_small)
// The icon to be shown in the expanded view.
.setLargeIcon(BitmapFactory.decodeResource(getResources(), R.drawable.notification_icon_large))
// The sound to be played when notification is generated
.setSound(RingtoneManager.getActualDefaultRingtoneUri(this, RingtoneManager.TYPE_NOTIFICATION))
// The title of the notification.
.setContentTitle("Time's Up")
// Message to be shown in expanded view.
.setStyle(new NotificationCompat.BigTextStyle().bigText(message))
// The message to be shown in collapsed view.
.setContentText("Stop using your phone now");

NotificationManager notificationManager =
(NotificationManager) getSystemService(NOTIFICATION_SERVICE);

// Show the notification using this.
notificationManager.notify(0, mBuilder.build());

关于android - 如何在 firemonkey Delphi XE 8 的 Android 通知栏(如 Facebook 等)中使用外部大图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32679122/

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