Preguntas etiquetadas con notifications

Una notificación es un elemento de la interfaz de usuario que se muestra para indicar que ha ocurrido un evento.

11
Abra la aplicación después de hacer clic en Notificación
Tengo una notificación en mi aplicación con el siguiente código: //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); …

5
Solicite permiso de usuario para recibir notificaciones UILocal en iOS 8
He configurado notificaciones locales en el delegado de la aplicación usando esto: - (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]]; } Cuando ejecuto la aplicación y luego la salgo, recibo un error que …

11
La notificación de Android no se muestra
Necesito un programa que agregue una notificación en Android. Y cuando alguien hace clic en la notificación, debería llevarlos a mi segunda actividad. He establecido un código. La notificación debería estar funcionando, pero por alguna razón no funciona. No Notificationse ve en absoluto. No sé qué me estoy perdiendo. Código …


5
Envío de una notificación desde un servicio en Android
Tengo un servicio en ejecución y me gustaría enviar una notificación. Lástima, el objeto de notificación requiere un Context, como un Activity, y no un Service. ¿Conoce alguna forma de evitarlo? Traté de crear una Activitypara cada notificación, pero parece fea y no puedo encontrar la manera de iniciar una …

17
Cómo mostrar múltiples notificaciones en Android
Recibo solo una notificación y si llega otra notificación, reemplaza la anterior y aquí está mi código 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, message, when); String title …

15
La mejor manera de serializar un NSData en una cadena hexadeximal
Estoy buscando una forma agradable de serializar un objeto NSData en una cadena hexadecimal. La idea es serializar el deviceToken usado para la notificación antes de enviarlo a mi servidor. Tengo la siguiente implementación, pero creo que debe haber una forma más corta y agradable de hacerlo. + (NSString*) serializeDeviceToken:(NSData*) …



15
Reciba una notificación cuando NSOperationQueue finalice todas las tareas
NSOperationQueuetiene waitUntilAllOperationsAreFinished, pero no quiero esperar sincrónicamente. Solo quiero ocultar el indicador de progreso en la interfaz de usuario cuando finaliza la cola. ¿Cuál es la mejor manera de lograrlo? No puedo enviar notificaciones desde mi correo electrónico NSOperationporque no sé cuál será el último y es [queue operations]posible que …

13
PendingIntent funciona correctamente para la primera notificación pero incorrectamente para el resto
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); } Esta función se llamará varias veces. Me gustaría que cada uno notificationiniciara testActivity cuando se hace clic …

6
Actualización de la insignia de iOS sin notificaciones push
He visto algunas aplicaciones de tareas pendientes que actualizan sus insignias de aplicaciones a la medianoche, mostrando siempre el número correcto de tareas pendientes. Hacen esto sin el uso de notificaciones automáticas, por lo que mi pregunta es: ¿cómo lo hacen? ¿Usan notificaciones locales? Si es así, ¿se les llama …



5
¿Cómo enfocarse en una pestaña de Chrome que creó una notificación de escritorio?
Me gustaría implementar la misma funcionalidad que tiene Gmail hoy en día. Cuando llega un nuevo correo electrónico o llega un nuevo chat, aparece una ventana emergente de notificación y, si hace clic en ella, se enfoca la pestaña con Gmail. Tengo este codigo: var n = window.webkitNotifications.createNotification('ico.gif', 'Title', 'Text'); …

Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.