estoy usando el siguiente código para lanzar una notificación cuando un servicio se inicia a través AlarmManager:¿Cómo se configura el oyente click para notificación?
nm = (NotificationManager) this.getSystemService(Context.NOTIFICATION_SERVICE);
CharSequence from = "App";
CharSequence message = "Getting Latest Info...";
PendingIntent contentIntent = PendingIntent.getActivity(this, 0, new Intent(), 0);
Notification notif = new Notification(R.drawable.icon,
"Getting Latest Info...", System.currentTimeMillis());
notif.setLatestEventInfo(this, from, message, contentIntent);
nm.notify(1, notif);
¿Cómo se configura un intento por este concepto de forma que cuando el usuario hace clic en él, que lanzará un cierto ¿actividad?
¿Podría darnos un ejemplo? – yoshi24
He agregado el código relevante que necesita para modificar – momo
También sé esto fuera de la pregunta, ¿de todos modos podría establecer un extra para pasar con él? – yoshi24