Questions marquées «android-notifications»

Une notification d'état ajoute une icône à la barre d'état du système (avec un message texte en option) et un message de notification dans la fenêtre de notifications.


8
startForeground échoue après la mise à niveau vers Android 8.1
Après la mise à niveau de mon téléphone vers la version 8.1 Developer Preview, mon service d'arrière-plan ne démarre plus correctement. Dans mon service de longue date, j'ai implémenté une méthode startForeground pour démarrer la notification en cours qui est appelée lors de la création. @TargetApi(Build.VERSION_CODES.O) private fun startForeground() { …


22
INSTALL_FAILED_DUPLICATE_PERMISSION… C2D_MESSAGE
J'utilise les notifications Google dans mon application, et jusqu'à présent, je l'ai fait ci-dessous dans le manifeste: <!-- GCM --> <uses-permission android:name="android.permission.GET_ACCOUNTS" /> <!-- GCM requires a Google account. --> <uses-permission android:name="android.permission.WAKE_LOCK" /> <!-- Keeps the processor from sleeping when a message is received. --> <uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" /> <!-- This …

9
NotificationCompat.Builder obsolète dans Android O
Après la mise à niveau de mon projet vers Android O buildToolsVersion "26.0.1" Lint dans Android Studio affiche un avertissement obsolète pour la méthode de générateur de notification suivante: new NotificationCompat.Builder(context) Le problème est le suivant: les développeurs Android mettent à jour leur documentation décrivant NotificationChannel pour prendre en charge …

18
Son de notification Android
J'ai utilisé le nouveau générateur NotificationCompat et je ne peux pas obtenir la notification pour émettre un son. Il vibrera et fera clignoter la lumière. La documentation Android dit de définir un style avec lequel j'ai fait: builder.setStyle(new NotificationCompat.InboxStyle()); Mais pas de son? Le code complet: NotificationCompat.Builder builder = new …


6
La notification dépasse les anciens extras d'intention
Je crée une notification dans un BroadcastReceiver via ce code: String ns = Context.NOTIFICATION_SERVICE; NotificationManager mNotificationManager = (NotificationManager) context.getSystemService(ns); int icon = R.drawable.ic_stat_notification; CharSequence tickerText = "New Notification"; long when = System.currentTimeMillis(); Notification notification = new Notification(icon, tickerText, when); notification.defaults |= Notification.DEFAULT_VIBRATE; long[] vibrate = {0,100,200,200,200,200}; notification.vibrate = vibrate; notification.flags …

22
Comment réparer: android.app.RemoteServiceException: Mauvaise notification publiée à partir du package *: Impossible de créer l'icône: StatusBarIcon
Je vois l'exception suivante dans les journaux de crash: android.app.RemoteServiceException: Bad notification posted from package com.my.package: Couldn't create icon: StatusBarIcon(pkg=com.my.package user=0 id=0x7f02015d level=0 visible=true num=0 ) at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1456) at android.os.Handler.dispatchMessage(Handler.java:102) at android.os.Looper.loop(Looper.java:146) at android.app.ActivityThread.main(ActivityThread.java:5487) at java.lang.reflect.Method.invokeNative(Native Method) at java.lang.reflect.Method.invoke(Method.java:515) at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1283) at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1099) at dalvik.system.NativeStart.main(Native Method) Je publie ma notification …

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, …


6
Android 4.1: Comment vérifier que les notifications sont désactivées pour l'application?
Android 4.1 propose à l'utilisateur une case à cocher pour désactiver les notifications pour une application spécifique. Cependant, en tant que développeur, nous n'avons aucun moyen de savoir si un appel à notifier a été efficace ou non. J'ai vraiment besoin de vérifier si les notifications sont désactivées pour l'application …
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.