Android AlarmManager - Cancel from another Activity
问题 I have a Homework Planner application which I want to create an Alarm for to remind users of the homework the night before/at a certain time. I have an Activity called AddNewHomework which is where the user creates a new homework item and it is added to the database. This code is then called. Intent i = new Intent(this, AlarmNotificationReceiver.class); i.putExtra("title", title); PendingIntent pi = PendingIntent.getBroadcast(this.getApplicationContext(), (int) id, i, 0); AlarmManager mAlarm