Desidero che la mia notifica venga eseguita ogni giorno alle 12:00. Come si sostituisce il valore when con un tempo?Impostare la notifica sull'ora specifica
NotificationManager nm = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
Notification notify = new Notification(R.drawable.icon,"Its Time to Eat",when);
Context context = GrubNOWActivity.this;
CharSequence title = "Its Time to Eat";
CharSequence details = "Click Here to Search for Restaurants";
Intent intent = new Intent(context,Search.class);
PendingIntent pending = PendingIntent.getActivity(context, 0, intent, 0);
notify.setLatestEventInfo(context, title, details, pending);
nm.notify(0,notify);
che sembra averlo fatto, grazie! –
ma come si imposta per un tempo particolare? diciamo che voglio che venga impostato quando è 10Pm come faccio? – silverFoxA
come impostarlo per un giorno specifico solo per esempio dal lunedì al venerdì e l'ora è 12:00? –