gpt4 book ai didi

Android 通知仅在状态栏上显示图标

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:07:35 25 4
gpt4 key购买 nike

在我的应用程序中,我编写了简单的通知功能,该方法仅在状态栏上显示图标,我也想显示通知布局,但不会自动显示,我已将 android 状态栏下拉以查看,

public static void createNotification(Context context, Class activity, String title, String subject, int count_unread_message) {

Intent intent = new Intent(context, activity);
intent.setFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP);
PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, intent, Intent.FLAG_ACTIVITY_NEW_TASK);

Notification notify = new NotificationCompat.Builder(context)
.setAutoCancel(true)
.setContentTitle(title)
.setContentText(subject)
.setSmallIcon(R.mipmap.ic_launcher)
.setNumber(count_unread_message)
.setPriority(0)

.setLights(Color.BLUE, 500, 500)
.setContentIntent(pendingIntent)
.build();

notify.flags |= Notification.FLAG_AUTO_CANCEL;

NOTIFICATIONMANAGER = (NotificationManager) context.getSystemService(context.NOTIFICATION_SERVICE);
NOTIFICATIONMANAGER.notify(159753456, notify);
}

看来这个问题是针对android 6以上的

最佳答案

对我来说,这是通过在构建器上调用 setDefaults(Notification.DEFAULT_ALL) 解决的。希望对您有所帮助,

保罗

关于Android 通知仅在状态栏上显示图标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38871140/

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