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
4
votes
1 answer

How do I keep my Android notification displayed until my app is closed?

I've been developing for Android for awhile but this is my first shot at notifications. I've got my notification setup as described in the Android SDK tutorial, but I can't figure out how to keep the notification displayed until my app is closed. …
Lou Morda
  • 5,078
  • 2
  • 44
  • 49
4
votes
2 answers

how to create a one time notification system in asp.net

I am trying to do something similar to stackoverflow notification, when you earn a new badge or privilege stackoverflow shows a message at the top of the page until you close the message and then its never shown again. i can create the message but…
Wahtever
  • 3,597
  • 10
  • 44
  • 79
4
votes
1 answer

notify-send cause invalid number of options

I want to do this while read line do echo $line; notify-send $line; done < "0.txt" where 0.txt is some file with 10 rows But the problem is notify-send $line; causes Invalid number of options, and notify-send "aasdasdsd" works just…
Lukap
  • 31,523
  • 64
  • 157
  • 244
4
votes
1 answer

No debug output after waiting for App Launch via Push Notification

I found an answer to my original problem here: Debugging App When Launched by Push Notification I want to be able to debug when the app is launched via push notification. This works great and the app sits and waits till its launched remotely.…
Asheh
  • 1,547
  • 16
  • 25
4
votes
2 answers

Notification Center caching settings?

I'm about to test Push notifications in my app. Now it works fine but I also need to test the possibility of the user not accepting push when the system alert is shown. However after first testing the case where the user accepts. I can delete the…
sebrock
  • 1,214
  • 2
  • 15
  • 32
4
votes
2 answers

NSNotification observed by released objects

See Update below... though this initially appeared to be an animation issue, it turned out that it was an issue with notifications. Beware: an NSNotification will be observed even by objects you have discarded. Be sure to removeObserver: to avoid…
4
votes
3 answers

Windows pop-up balloon for PHP & MySQL application

I have a ticketing web application written with PHP and MySQL. I need something like windows balloon or gmail desktop notifier for Chrome to notify users about some events. For example, when a new ticket arrives to a users, he/she can be notified…
Mohammad Saberi
  • 12,864
  • 27
  • 75
  • 127
4
votes
1 answer

Mobile app friend invite/notification

I'm currently developing a mobile app that allows the user to login through facebook. This allows the app to show which facebook friend is already using the app. The next thing I want to do is to allow the user to send an invitation about the app to…
fdezjose
  • 607
  • 2
  • 9
  • 18
4
votes
1 answer

How is Cocoa : addObserver working under the hood?

how does addObserver: works under the hood ? Since Objective C can't overload operators... Are class @properties, or object references stored implicitly in a NSDictionary, which can monitor value access ? Or how can cocoa observe values ? And…
Peter Lapisu
  • 19,915
  • 16
  • 123
  • 179
4
votes
3 answers

What is the best way to create a smooth notification window in Java?

...similar to those produced by email clients like thunderbird or outlook, sliding up or fading in from the tray.
peter p
  • 778
  • 5
  • 14
4
votes
2 answers

Notification, PendingIntent and Intent Flags problems

(Skip down for a short summary)I am having trouble with the sequence of Activities in my application. The application has 3 Activity which flow from A to B to C (or C to B to A if back is pressed consecutively). In normal operation the app works…
triggs
  • 5,890
  • 3
  • 32
  • 31
4
votes
1 answer

How to trap the TTN_LINKCLICK notification?

I'm trying to implement a simple Balloon Hint, using the "tooltips_class32". In fact, all behaviour is correct except the links on balloon. My balloons are being correctly created and I can see the link, but when i click the link nothing happens. I…
4
votes
2 answers

Notification text color in Galaxy S 2.3.3

I'm building a music app, which has an ongoing notification. I meet the text color problem of notifications on Galaxy S with 2.3.3. My code is: in layout/notification.xml
Romulus Urakagi Ts'ai
  • 3,699
  • 10
  • 42
  • 68
4
votes
1 answer

Scrolling body text on Android Notification

Is there a way to get the body text of a notification to scroll along the notification? If this text is too long it just fades out at the border near the time. Is there a way to make it scroll slowly along so that someone could read it while in the…
Glenn.nz
  • 2,261
  • 2
  • 17
  • 20
4
votes
4 answers

What's the best way to notify a non-web application about a change on a web page?

Let's say I have two applications which have to work together to a certain extent. A web application (PHP, Ruby on Rails, ...) A desktop application (Java, C++, ...) The desktop application has to be notified from the web application and the delay…
Daniel Rikowski
  • 71,375
  • 57
  • 251
  • 329
1 2 3
99
100