intent.putExtra(key, value)
値を入力して値を取得できることは承知していますintent.getStringExtra(key)
が、次のコードでは期待どおりに動作しません。値を取得するとき、私は取得してNUllPointer, printLn needs a message
います。
値を設定しているコード:
public void SetAlarm(Context context, int seconds, String type) {
CustomLog.logBlue(Thread.currentThread().getStackTrace(), "set alarm");
AlarmManager am = (AlarmManager) context.getSystemService(Context.ALARM_SERVICE);
Intent intent = new Intent(context, AlarmManagerBroadcastReceiver.class);
intent.putExtra(ONE_TIME, Boolean.FALSE); //ONE_TIME = "oneTime"
intent.putExtra("c", "ayush");
PendingIntent pi = PendingIntent.getBroadcast(context, 0, intent, 0);
am.setRepeating(AlarmManager.RTC_WAKEUP, System.currentTimeMillis(), seconds * 1000, pi);
CustomNotification.generateNotification(1, context, "Tracking enabled");
}
そして、BroadcaseReceiver の onReceive で値を取得しています: [無関係なコードを省略]
@Override
public void onReceive(Context context, Intent intent) {
Bundle extras = intent.getExtras();
Log.e("test", extras.getString("c"); <------ ERROR
// also tried intent.getStringExtra("c");
}