gpt4 book ai didi

android - 如何在我的应用程序关闭之前一直显示我的 Android 通知?

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:52:40 31 4
gpt4 key购买 nike

我已经为 Android 开发了一段时间,但这是我第一次接触通知。我已经按照 Android SDK 教程中的说明进行了通知设置,但我不知道如何在我的应用程序关闭之前保持通知显示。我想在通知结束时禁用那个小减号。我不希望我的通知在用户单击时消失。我认为会有一个通知标志......但我似乎无法弄清楚。我正在开发 Android SDK 2.2。我知道这是一个简单的问题,如果这个答案已经在此处,我深表歉意...我无法准确找到我要找的东西。

    // Create notification manager
String ns = Context.NOTIFICATION_SERVICE;
NotificationManager mNotificationManager = (NotificationManager) getSystemService(ns);
Notification notification = new Notification(R.drawable.ic_launcher, "Ready", System.currentTimeMillis());
Intent notificationIntent = new Intent(this, HomeActivity.class);
PendingIntent contentIntent = PendingIntent.getActivity(this, 0, notificationIntent, 0);

// Make a notification
notification.setLatestEventInfo(getApplicationContext(), "Ready", "Select to manage your settings", contentIntent);
mNotificationManager.notify(0, notification);

最佳答案

你想要FLAG_ONGOING_EVENT .如果 FLAG_NO_CLEAR 和 FLAG_AUTO_CANCEL 是默认设置的一部分,也请尝试删除它们。

关于android - 如何在我的应用程序关闭之前一直显示我的 Android 通知?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8888881/

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