Przekazuję oczekującą zgodę na zgłoszenie alarmu, z klasy serwisowej. Jednak po oczekiwaniu na pożary intencyjne, informacja intent.putExtra() nie jest odbierana przez klasę broadcastreceiver. Oto mój kod do wypalania pendingIntentintent.putExtra() w oczekiwaniu na zamiar nie działa
Intent aint = new Intent(getApplicationContext(), AlarmReceiver.class);
PendingIntent pendingIntent = PendingIntent.getBroadcast(getApplicationContext(), id, aint, PendingIntent.FLAG_UPDATE_CURRENT);
aint.putExtra("msg", msg);
aint.putExtra("phone", phone);
alarmManager.set(AlarmManager.RTC_WAKEUP, cal.getTimeInMillis(), pendingIntent);
Klasa odbiornik alarmu jest poniżej
public String msg, phonen;
@Override
public void onReceive(Context context, Intent intent){
Bundle extras = intent.getExtras();
msg = extras.getString("msg");
phonen = extras.getString("phone");
Log.d("onReceive", "About to execute MyTask");
Toast.makeText(context,msg, Toast.LENGTH_LONG).show();
}
msg Informacje na tosty, które są odbierane od oczekiwaniu intencje, nie jest pokazane. Zamiast tego pokazany jest pusty tost.
Dla tych, patrząc na to i mają metody .putExtra przed dołączeniem do PendingIntent The 'PendingIntent.FLAG_UPDATE_CURRENT' jest ważna, więc spróbuj, że przed przejściem do innego rozwiązania. – DonutGaz