gpt4 book ai didi

Android 通知未在 LG 和其他一些设备中显示

转载 作者:行者123 更新时间:2023-11-30 03:08:07 27 4
gpt4 key购买 nike

我使用以下代码在前台启动服务时显示通知。

PendingIntent contentIntent = PendingIntent.getActivity(this, 0,
new Intent(this, MainActivity.class), 0);

NotificationCompat.Builder mBuilder =
new NotificationCompat.Builder(this)
.setSmallIcon(R.drawable.statusbar_icon)
.setContentTitle("App is running")
.setStyle(new NotificationCompat.BigTextStyle())
.setPriority(Integer.MAX_VALUE)
.setDefaults(Notification.DEFAULT_ALL);

mBuilder.setContentIntent(contentIntent);

startForeground(R.string.service_running, mBuilder.build());

通知显示在除 LG-E450 和三星设备之外的所有设备的通知栏中。不仅如此,我的应用程序的任何通知都没有显示在栏中。

最佳答案

文档指出 detail text is required可以通过 NotificationCompat.Builder#setContentText(CharSequence) 设置(虽然我的 GS3 会显示没有详细文本的通知)

关于Android 通知未在 LG 和其他一些设备中显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21438626/

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