una studio sgoliver persistente pagina notificar notificaciones notificacion cambios alertas android list notifications

android - studio - notificar cambios en una pagina web



¿Cómo mostrar la lista de alertas de notificación una por una de la actividad? (1)

Tu pregunta no es muy clara. Creo que estás preguntando cómo puedes mostrar las notificaciones y que se queden, así que a medida que muestras más notificaciones no eliminan las anteriores. es decir, cada vez que muestra una notificación, se agrega a la lista sin reemplazar la existente. Si es así, hazlo así:

notificationManager.notify(0, notification); notificationManager.notify(1, notification); notificationManager.notify(2, notification); notificationManager.notify(3, notification);

Al proporcionar un identificador diferente para cada notificación, se muestran por separado.

soy nuevo programador en la aplicación de Android me gustaría mostrar múltiples notificaciones una por una desde activity.i he implementado un método para obtener la notificación de la siguiente manera

public void myNotify(String message) { Log.v("my notification method","from GetNotification class"); NotificationManager notificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE); Notification notification = new Notification(R.drawable.icon, "check the notification", System.currentTimeMillis()); // Hide the notification after its selected notification.flags |= Notification.FLAG_AUTO_CANCEL; Intent intent = new Intent(android.content.Intent.ACTION_VIEW,Uri.parse("")); PendingIntent activity = PendingIntent.getActivity(this, 0, intent, 0); notification.setLatestEventInfo(this, message, "for more info run ur app", activity); notification.number += 1; notificationManager.notify(0, notification); }

y he usado una matriz de cadenas para mostrar las notificaciones como una lista del siguiente código para las notificaciones de visualización

String[] msg={"hai","how are you?","wer r u?","what is going on","how is this?","let we talk?","nothing is there","hahaha"}; Thread rt=new Thread(new Runnable() { @Override public void run() { try { for(int i1=0;i1<msg.length;i1++){ Log.v("", "thread running"+i1); myNotify(msg[i1]); Thread.sleep(5000); } } catch (InterruptedException e) { e.printStackTrace(); } } }); rt.start();

desde el código anterior, me gustaría mostrar las notificaciones de las listas de alertas una a una de la siguiente manera:

hai

¿cómo estás?

¿donde estas?

Que esta pasando

¿Cómo es esto?

........

¿Cómo puedo mostrar los valores del conjunto de cadenas como notificaciones como lista?