Questions marquées «notifications»

Une notification est un élément de l'interface utilisateur affiché pour indiquer qu'un événement s'est produit.

11
Ouvrez l'application après avoir cliqué sur Notification
J'ai une notification dans mon application avec le code suivant: //Notification Start notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE); int icon = R.drawable.n1; CharSequence tickerText = "Call Blocker"; long when = System.currentTimeMillis(); //now Notification notification = new Notification(icon, tickerText, when); Intent notificationIntent = new Intent(context, Main.class); PendingIntent contentIntent = PendingIntent.getActivity(context, 0, notificationIntent, 0); …

11
La notification Android ne s'affiche pas
J'ai besoin d'un programme qui ajoutera une notification sur Android. Et quand quelqu'un clique sur la notification, cela devrait le conduire à ma deuxième activité. J'ai établi le code. La notification devrait fonctionner, mais pour une raison quelconque, elle ne fonctionne pas. Le Notificationne montre pas du tout. Je ne …

5
Demander l'autorisation de l'utilisateur pour recevoir des notifications UILocal dans iOS 8
J'ai configuré des notifications locales dans le délégué d'application en utilisant ceci: - (void)applicationDidEnterBackground:(UIApplication *)application { UILocalNotification *notification = [[UILocalNotification alloc]init]; [notification setAlertBody:@"Watch the Latest Episode of CCA-TV"]; [notification setFireDate:[NSDate dateWithTimeIntervalSinceNow:5]]; [notification setTimeZone:[NSTimeZone defaultTimeZone]]; [application setScheduledLocalNotifications:[NSArray arrayWithObject:notification]]; } Lorsque j'exécute l'application, puis que je la quitte, je reçois une erreur …


5
Envoi d'une notification depuis un service sous Android
J'ai un service en cours d'exécution et je souhaite envoyer une notification. Dommage, l'objet de notification nécessite un Context, comme un Activity, et non un Service. Connaissez-vous un moyen de contourner cela? J'ai essayé de créer un Activitypour chaque notification mais cela semble moche, et je ne trouve pas de …

17
Comment afficher plusieurs notifications sur Android
Je ne reçois qu'une seule notification et s'il y a une autre notification, elle remplace la précédente et voici mon code private static void generateNotification(Context context, String message, String key) { int icon = R.drawable.ic_launcher; long when = System.currentTimeMillis(); NotificationManager notificationManager = (NotificationManager) context .getSystemService(Context.NOTIFICATION_SERVICE); Notification notification = new Notification(icon, …




15
Recevez une notification lorsque NSOperationQueue termine toutes les tâches
NSOperationQueuea waitUntilAllOperationsAreFinished, mais je ne veux pas l'attendre de manière synchrone. Je veux simplement masquer l'indicateur de progression dans l'interface utilisateur lorsque la file d'attente se termine. Quelle est la meilleure façon d'y parvenir? Je ne peux pas envoyer de notifications de mes NSOperations, car je ne sais pas laquelle …

13
PendingIntent fonctionne correctement pour la première notification mais incorrectement pour le reste
protected void displayNotification(String response) { Intent intent = new Intent(context, testActivity.class); PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, intent, Intent.FLAG_ACTIVITY_NEW_TASK); Notification notification = new Notification(R.drawable.icon, "Upload Started", System.currentTimeMillis()); notification.setLatestEventInfo(context, "Upload", response, pendingIntent); nManager.notify((int)System.currentTimeMillis(), notification); } Cette fonction sera appelée plusieurs fois. Je voudrais que chacun notificationlance testActivity en cliquant dessus Malheureusement, seule …

6
Mise à jour du badge iOS sans notifications push
J'ai vu quelques applications todo qui mettent à jour leurs badges d'application à minuit, affichant toujours le nombre correct de tâches à effectuer. Ils font cela sans utiliser de notifications push - ma question est donc: comment font-ils cela? Utilisent-ils des notifications locales - si tel est le cas, sont-ils …
En utilisant notre site, vous reconnaissez avoir lu et compris notre politique liée aux cookies et notre politique de confidentialité.
Licensed under cc by-sa 3.0 with attribution required.