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

No Balloon Tooltip Close Buttons in Windows Server 2008

My program uses balloon notification bubbles within the app to guide the user, in Windows XP the balloon windows have little 'X's in the top right corner to close the window when clicked, and also the window closes if you click anywhere inside of it…
Kyle V.
  • 4,752
  • 9
  • 47
  • 81
5
votes
1 answer

iPhone headphone audio jack re-routing

We created an external iOS notification light that uses the device’s audio for power. When you get a phone call on iPhone and the light is plugged in, you still get the ringtone but when you pick up, the audio is rerouted to the headphones (the…
5
votes
1 answer

Titanium Mobile Push Notifications callback not fired

I asked this question on the developers forum too, but as my time is running out I hoped posting on stackoverflow might be quicker. Currently I am able to receive push notifications and I want to send some extra data along, after searching around I…
5
votes
2 answers

Android : Cancel Notification after click on Action (Like Call)

I have an action to Dial a number via uri = Uri.parse("tel:" + address); Intent intent = new Intent(Intent.ACTION_DIAL); intent.setData(uri); PendingIntent pd = PendingIntent.getActivity(context, 0,intent, …
Daksh
  • 1,177
  • 2
  • 18
  • 28
5
votes
2 answers

Django/Python email notification for events

I work on a page in Django, where users can set custom reminders for different dates (max. 3 per date). The reminders should send via e-mail. Its similar to Google Calendar, where you can set multiple reminders for each event in x-minutes, x-hour…
YYYY-MM-DD
  • 4,411
  • 1
  • 15
  • 14
5
votes
1 answer

Kivy: crossplatform notification icon

I want to create a cross-platform application (Ubuntu and Android) with a notification icon. Is there a standard way to create such an app using Kivy?
macropas
  • 3,100
  • 3
  • 22
  • 25
5
votes
1 answer

Use Windows 8 toast notification from desktop app

I developed a desktop app, which is a simple .exe for Windows. It works fine on Windows 8. I try now to use "toast notification" to show some alert for user. So I trained with Microsoft sample, available here:…
TheFrancisOne
  • 2,667
  • 9
  • 38
  • 58
5
votes
3 answers

How to architect push notifications to a Swing client from JAX-WS on GlassFish?

I have a widely distributed java swing application that is a web service client from a JAX WebService EJB on a Glassfish 3.1.2 server. I want to be able to distribute a String notification to all users that stays active until they have read it. The…
Quinma
  • 1,436
  • 2
  • 17
  • 39
5
votes
1 answer

Android Remote View Notifications

I have an android notification bar which uses a remote view. I have 2 buttons on there to play and pause audio and also an icon to return to the application. I want to be able to click the icon (or anywhere but on the 2 buttons) and return to the…
user706593
  • 51
  • 5
5
votes
4 answers

Why the Observer in NSNotification called twice....?

If the class is a custom class, after posting the notification, the selector corresponding to the observer is called twice.. Is there any better solution so that the selector is called only once?
Ganesh Nayak
  • 802
  • 11
  • 38
5
votes
6 answers

How to use a Bitmap as a Notification Icon

I want to draw something on a pic , after do that , it is a Bitmap . i want to add this Bitmap to the Notification as its icon. but it the icon must be a int Id . How can i make it? thanks for your answer~~~~ pls hlep me!
Daniel Zhao
  • 76
  • 1
  • 7
5
votes
1 answer

Android prevent multiple updates of the same Notification

I am polling from a server every x minutes to get events a user is invited to. Let's say the user has a new invite and gets a notification at 10:00 am. The user never clicks on the notification, and I want to prevent the user from receiving another…
James Fazio
  • 6,370
  • 9
  • 38
  • 47
5
votes
2 answers

Android notifications: compatibility with APIs

I'm trying to show notifications in my app along with a progress bar in it. My app specs are that I'm targeting API 15 with minimum SDK set to 8. I'm using the following code to show notifications: NotificationManager mNotificationManager =…
5
votes
2 answers

Repeating notifications on Android 4

Goal: Notification appears everyday once, at 2 PM, if certain condition is met. Example: For simplicity, let's consider that the condition, checked with Internet connection, is met everyday. If today is already after 2 PM, we we'll start…
Adam Stelmaszczyk
  • 19,665
  • 4
  • 70
  • 110
5
votes
2 answers

Failed to retrieve object property in WMI (c++)

I want to do something with WMI (receiving some event notification) so I start with simple example from MSDN website: Receiving Event Notifications Through WMI this program receives an event notification (process creation) through WMI, and calls the…
aiman09
  • 105
  • 8