2

AlarmManager+を使用NotificationManagerして特定の時間に通知を表示しています。ただし、コードでアラームをキャンセルすることはできません。アラームを削除した後も、通知/アラームが鳴り続けます。誰かが私のコードを調べて、私が何か間違っているかどうかを確認できますか?どうもありがとうございました!:)

これは私が私のアラーム/通知を設定する方法です:

Intent intent = new Intent(this, ViewLocalReminders.class);
startActivity(intent);

//Get the primary key of the reminder that has just been saved.
Cursor cursor = remindersDAO.reminderNotification(this);
cursor.moveToLast();
int reminderIdColumnIndex = cursor.getColumnIndex("_id");
reminderPrimaryKey = cursor.getInt(reminderIdColumnIndex);

//Get the name of the reminder that has just been saved.
cursor.moveToLast();
int reminderNameColumnIndex = cursor.getColumnIndex("name");
reminderName = cursor.getString(reminderNameColumnIndex);

cursor.close();

Toast toast = Toast.makeText(context, context.getString(R.string.reminder_saved), Toast.LENGTH_LONG);
toast.show();

c.set(mYear, mMonth, mDay); //Set the notification date.
c.set(Calendar.HOUR_OF_DAY, pHour); //Set the notification hour.
c.set(Calendar.MINUTE, pMinute); //Set the notification minute.
c.set(Calendar.SECOND, 0); //Set the notification second (always 0).

//Use AlarmManager to trigger the notification/alarm.
AlarmManager alarmManager = (AlarmManager) getSystemService(ALARM_SERVICE);

//PendingIntent to launch activity when the alarm triggers.                    
Intent i = new Intent("com.utilityapps.Blah.DisplayReminderNotification");

//Assign the reminder's primary key as the notification ID.
i.putExtra("Reminder_Name", editRemindMeTo.getText().toString());
i.putExtra("Reminder_Primary_Key", reminderPrimaryKey);

PendingIntent displayIntent = PendingIntent.getActivity(getBaseContext(), reminderPrimaryKey, i, 0);               

//Set the alarm to trigger.
alarmManager.set(AlarmManager.RTC_WAKEUP, c.getTimeInMillis(), displayIntent);

これが私のアラーム/通知をキャンセルする方法です:

Intent i = new Intent("com.utilityapps.Blah.DisplayReminderNotification");
PendingIntent displayIntent = PendingIntent.getService(context, (int) reminderID, i, PendingIntent.FLAG_CANCEL_CURRENT);

AlarmManager alarmManager = (AlarmManager) context.getSystemService(Context.ALARM_SERVICE); 

alarmManager.cancel(displayIntent);
displayIntent.cancel();

それで、コードを機能させるためにコードを変更する必要があるものはありますか?ありがとう!:D

4

1 に答える 1

4

アラームの設定とキャンセル中の保留中のインテントは同じではありません。両方に同じ保留中のインテントを作成してください。うまくいけばうまくいきます。

アラームをキャンセルするには

AlarmManager alarmManager = (AlarmManager) getSystemService(ALARM_SERVICE);

Intent i = new Intent("com.utilityapps.Blah.DisplayReminderNotification");

PendingIntent displayIntent = PendingIntent.getActivity(getBaseContext(), reminderPrimaryKey, i, 0);               

alarmManager.cancel(displayIntent);
于 2012-09-28T04:19:50.603 に答える