gpt4 book ai didi

android gcm 推送通知只播放声音,不显示在顶部

转载 作者:行者123 更新时间:2023-11-29 17:31:30 24 4
gpt4 key购买 nike

收到来自 GCM 的消息时,我正在生成通知

/**
* Create and show a simple notification containing the received GCM message.
*
* @param message GCM message received.
*/
private void sendNotification(String message) {
Intent intent = new Intent(this, MyActivity.class);
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0 /* Request code */, intent,
PendingIntent.FLAG_ONE_SHOT);

Uri defaultSoundUri= RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this)
.setSmallIcon(R.drawable.ic_action_chat)
.setContentTitle("GCM Message")
.setContentText(message)
.setAutoCancel(true)
.setSound(defaultSoundUri)
.setContentIntent(pendingIntent);

NotificationManager notificationManager =
(NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);

notificationManager.notify(0 /* ID of notification */, notificationBuilder.build());
}

生成通知,播放声音,但不会显示在屏幕顶部。通知显示在快速设置/通知下拉菜单中,但在我生成它时,它没有显示在屏幕顶部,只播放声音。

我想在生成它时将其显示在屏幕顶部。我该怎么做?

最佳答案

这是来自 android lollipop 的提示通知,您可以在此处查看如何显示通知 http://developer.android.com/guide/topics/ui/notifiers/notifications.html对于单挑,您必须如下设置通知优先级

.setPriority(Notification.PRIORITY_HIGH)

编辑 11 月 17 日

Notification.PRIORITY_HIGH 在 API 级别 26 中已弃用。请改用 IMPORTANCE_HIGH

关于android gcm 推送通知只播放声音,不显示在顶部,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32699568/

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