Questions tagged [notifications]

A notification is a user interface element displayed to indicate an event has occurred.

A notification is a user interface element displayed to indicate an event has occurred.

Notifications typically occur in a designated area of an application's UI, such as an icon appearing in a status bar or an alert message.

15974 questions
5
votes
3 answers

Android notification dismissed callback?

my app searches for new articles and sends a notification like "5 new articles". However when i send another one, i want to have it update the text to lets say there were 3 new so something like "8 new articles" BUT "3 new articles" if the user has…
urSus
  • 12,492
  • 12
  • 69
  • 89
5
votes
5 answers

How to send out email notification for Maven build

Is there a simple way to send out email notifications in Maven for each build without outside CI tools, just like Ant?
moonese
  • 483
  • 1
  • 6
  • 15
5
votes
1 answer

Service allocate lots of memory?

I've been using Android open source service example. I just need to use it to send notification to user, but strange, it allocates lots of memory. I checked in Running Services, and it is almost 20MB (if i set ACTION_BACKGROUND) or 30MB (if i set…
yahya
  • 4,810
  • 3
  • 41
  • 58
5
votes
2 answers

In Android (on JB), how can I add an action to a custom rich notification?

I've been playing with the new rich notificaitons in Jelly Bean, and everything works as expected when I set up a new notificaiton using the templates Notification.BigPictureStyle, Notification.BigTextStyle, or Notification.InboxStyle. I can use the…
user496854
  • 6,461
  • 10
  • 47
  • 84
5
votes
1 answer

expandable notificaton android 4.1

There is new feature in Android 4.1 JellyBean. Expandable Notifications in status bar. Question is how to implement it ? There is any tutorial how to do this ? Thanks
M Kosztolowicz
  • 290
  • 4
  • 11
5
votes
1 answer

Notification action buttons appereance

How to make the notification buttons to appear as they are supposed to (like on the 2nd notification on the image below)? This is my code: Notification.Builder nb = new Notification.Builder(mCtx); nb.setTicker("DATART"); …
martinpelant
  • 2,961
  • 1
  • 30
  • 39
5
votes
3 answers

Arduino Automatic Email Notification

I'd like to get started on a project involving the arduino and email notifications. I'm not sure anything like this has been done before, but I'm guessing some form of it has. Let me explain. Basically I would like to set up the arduino with…
Peter
  • 311
  • 1
  • 7
  • 19
5
votes
1 answer

Display notification on target page after redirect

Let's say I have a form on the add-project.html page. After the request is done, I redirect the user back to the main index.html page. What I want to do is to display a notification on index.html only when the user has successfully submitted the…
morgi
  • 1,005
  • 3
  • 17
  • 24
5
votes
1 answer

iOS how to detect if power cable is plugged

I am making a GPS app and the accuracy changes based on if power is available (ie vehicle charger) Is there a way to run something in the background that constantly checks to see if a device is receiving power? I know how to check if power is…
Cocoa Dev
  • 9,361
  • 31
  • 109
  • 177
5
votes
4 answers

How to set notification sound volume programmatically?

I have this method in my main activity private void beep() { AudioManager manager = (AudioManager) getSystemService(Context.AUDIO_SERVICE); manager.setStreamVolume(AudioManager.STREAM_NOTIFICATION, 0, AudioManager.FLAG_SHOW_UI +…
Vitalii Korsakov
  • 45,737
  • 20
  • 72
  • 90
5
votes
1 answer

Abnormally big WebKit notifications

I'm developing a Chrome extension, and I've noticed that Chrome started to do weird things to my notifications. I am talking about the huge whitespace thing (notification height should end at the blue bar). It wasn't like that some time ago, it…
lauriys
  • 4,652
  • 7
  • 32
  • 40
5
votes
2 answers

AlarmManager Repeat

I have an Alarm which sends a notification at a specific time (if in that day there is a contact's birthday). What I need is that when I set the alarm, it should repeat every year in the same day and at the same time. How could I do that? Intent…
stanga bogdan
  • 724
  • 2
  • 8
  • 26
5
votes
3 answers

Local Notification Triggers when uninstalled and reinstalled the app

when i set an local notification for an upcoming time and when deleted the app, the local notification triggers while i re installed the app. Is there any method to avoid this. Why this happens??
user825835
5
votes
1 answer

Growl Notifications from a Web Server

I notice that Growl allows for the possibility of Growl notifications from a website. Has anyone tried implementing this? If so, what form did it take? Did you implement multi user support? And, can you provide any code examples (C# or Objective-C…
kim3er
  • 6,306
  • 4
  • 41
  • 69
5
votes
1 answer

Is there any way to know if another application changed the display resolution in Cocoa?

I need to monitor for any screen resolution changes in my app, coming with my app in front or not. I searched a lot on the internet yesterday and tried all these…
Rodrigo
  • 674
  • 8
  • 19