问题标签 [notificationmanager]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
2 回答
3263 浏览

android - 如何连续停止和播放通知?

我想实现这一点:

  • 当警报开始响起时,通知声音应持续播放,直到用户拖动通知栏。
  • 当我向下拖动通知栏时,声音应该停止播放。
0 投票
1 回答
170 浏览

android - NotificationManager — 如果在两小时内没有按下通知,如何让通知记录“否”?

我已经设置了在特定时间出现在状态栏中的通知。当您按下它时,它会将“是”记录到数据库中。但是,如果 2 小时后没有按下它,我希望它记录“否”。我了解如何进行日志记录部分,但如果没有在两小时内按下,我不知道如何调用该场景。我知道我可以创建两个日历来比较它们,但是我又会把它们放在哪里呢?请问有什么建议吗?我在下面添加了一些代码。谢谢!

设置报警代码:

通知代码:

0 投票
1 回答
3150 浏览

android - 多个状态栏通知,唯一 ID 不起作用

我有一个应用程序可以向状态栏发送通知以提醒吃药。如果需要同时服用两粒药。然后将发送两个单独的通知。我知道您需要在 .notify(int id, notification notification) 函数中使用唯一的 id 才能发生这种情况。但是,它似乎不起作用。我确定我的 id 是不同的,因为我通过显示敬酒来测试它们。我将不胜感激任何建议。这是我的代码:

报警类:

信息类:

0 投票
1 回答
1118 浏览

android - 如何同时显示两个单独的通知?

每当需要吃药时,我的应用程序都需要在状态栏中显示通知。如果要同时服用两粒药丸,则会出现两个通知。现在,如果药丸时间不同,我的应用程序可以显示单独的通知。问题是如果它们同时出现,它只显示最近创建的(当我按下按钮时)。但是它仍然振动两次。有什么建议么?

信息类:

报警等级:

0 投票
4 回答
12727 浏览

android - Android上的通知管理器问题

我正在尝试使用按钮进行通知,但不推荐使用 Notification 和 setLatestEventInfo。

两个错误:

1.构造函数 Notification(int, CharSequence, long) 被弃用Notification notify = new Notification(android.R.drawable.stat_notify_more, "Hello all", System.currentTimeMillis());

2.NotificationsetLatestEventInfo(Context, CharSequence, CharSequence, PendingIntent)类型中的方法不适用于参数(Context, CharSequence, CharSequence, Intent) notify.setLatestEventInfo(context, title, details, intent);

API级别:

什么是替代方案?

0 投票
1 回答
144 浏览

android - 可见时更新通知

Notification我的Android 应用程序中有一个(丰富的) ,目前正在使用BigPictureStyle

显示的位图会不时更改,因此我需要更新通知,这没什么大不了的,但我不知道何时显示我的通知,因此不知道何时更新通知。

创建位图需要大量的性能,因此我不想做太多必要的事情。你有什么想法,我如何尽可能少地更新我的通知,但尽可能多地更新我的通知?

0 投票
6 回答
8418 浏览

android - 收到推送通知时添加新通知(不替换以前的通知)

我在我的应用程序中使用推送通知。我需要在推送通知传递时显示通知。如果我发送另一个通知(不清除以前的通知),它将替换旧通知。

这是我使用的代码:

但我不想替换通知,我想将其添加为新通知。

0 投票
1 回答
8357 浏览

android - Notification won't work using notification manager and notification.builder

I'm new to android development, and I'm struggling with implementing a notification in my app. basically the problem is that the notification won't show up (and it did at the beginning), and I have no idea why, I've looked at other notification problems here and in other forums, but still didn't managed to fixed mine. It's getting quite frustrating and I'm posting it here as somewhat of a last resort 'cause I'm tired of guessing what's wrong... this is my code, I get no errors but the notification simply won't show. any help would be much appreciated.

Anyway, this is the code, I've declared the brodcastReciver in the manifest and everything.

Thanks, Elad

}


Update

Thanks a lot ! I'm using AlarmManager to call a notification after some time and this notification should open an activity. The Alarammanager seems to work, because when I try to call a different activity (instead of the notification), it opens it at the right time, but when I call the notification, nothing happens.

I'm having a few errors trying to implement your code, what am I doing wrong?

The logcat doesn't show anything, but the console gives this:

0 投票
1 回答
213 浏览

android - 安卓通知

是否可以在通知中从 URI 添加自定义图像?例如:

我会从 URI 中插入图像,而不是从可绘制资源中插入图像。提前致谢

0 投票
4 回答
6778 浏览

android - 如何将变量从通知管理器传递到android中的活动

我在通知管理器中意图一个变量,因为意图第一次成功工作,但第二次当我意图新消息时,活动显示出危险的价值请帮助我解决我真的遇到了一个大问题

  1. 这是通知管理器的代码
  1. 在接收消息类中

提前致谢