简体   繁体   English

通过单击通知停止AlarmManager

[英]Stop AlarmManager by click on Notification

Good day, I hope that someone will be able to help me! 美好的一天,我希望有人能够帮助我! I have AlarmManager and NotificationCompat in my application. 我的应用程序中有AlarmManagerNotificationCompat I want to stop playing alarm when I just click on notification. 我想在单击通知时停止播放警报。 Here's my code: 这是我的代码:

public class MyAlarm extends BroadcastReceiver {

private static final int NOTIFICATION_ID = 101;

@Override
public void onReceive(final Context context, Intent intent) {
    NotificationHelper notificationHelper = new NotificationHelper(context);
    MediaPlayer mediaPlayer = MediaPlayer.create(context, Settings.System.DEFAULT_RINGTONE_URI);
    Uri uri = intent.getData();

    Intent newIntent = new Intent(context, AddNoteActivity.class);
    newIntent.setData(uri);
    PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, newIntent, PendingIntent.FLAG_UPDATE_CURRENT);

    NotificationCompat.Builder nb = notificationHelper.getChannel1Notification(pendingIntent);

    notificationHelper.getManager().notify(NOTIFICATION_ID, nb.build());

    mediaPlayer.start();
}

NotificationHelper: NotificationHelper:

public class NotificationHelper extends ContextWrapper {

public static final String chanel1ID = "chanel1ID";
public static final String chanel1Name = "chanel 1";

private NotificationManager notificationManager;

public NotificationHelper(Context base) {
    super(base);
    if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.O){
        createChannels();
    }
}
@RequiresApi(api = Build.VERSION_CODES.O)
public void createChannels(){
    NotificationChannel channel1 = new NotificationChannel(chanel1ID, chanel1Name, NotificationManager.IMPORTANCE_DEFAULT);
    channel1.enableLights(true);
    channel1.enableVibration(true);
    channel1.setLightColor(R.color.colorPrimary);
    channel1.setLockscreenVisibility(Notification.VISIBILITY_PRIVATE);

    getManager().createNotificationChannel(channel1);
}

public NotificationManager getManager() {
    if (notificationManager == null) {
        notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
    }

    return notificationManager;
}

public NotificationCompat.Builder getChannel1Notification(PendingIntent intent){

    return new NotificationCompat.Builder(getApplicationContext(), chanel1ID)
            .setContentTitle("asda")
            .setContentIntent(intent)
            .setSmallIcon(R.drawable.ic_notifications_black_24dp)
            .setAutoCancel(true);
}

and setAlarm in 3rd class: 并在第3类中设置setAlarm:

public void setAlarm(long timeInMillis){

    if(Build.VERSION.SDK_INT >= 23){
        mCalendar.set(
                mCalendar.get(Calendar.MONTH),
                mCalendar.get(Calendar.YEAR),
                mCalendar.get(Calendar.DAY_OF_YEAR),
                mCalendar.get(Calendar.HOUR_OF_DAY),
                mCalendar.get(Calendar.MINUTE)
        );
    }

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

    Intent intent = new Intent(this, MyAlarm.class);
    intent.setData(currentUri);

    final PendingIntent pendingIntent = PendingIntent.getBroadcast(this, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT);
    alarmManager.setExact(AlarmManager.RTC, timeInMillis, pendingIntent);

Hope someone will help me here, because I lost almost all day for find a solution. 希望有人会在这里为我提供帮助,因为我几乎整天都在寻找解决方案而迷失了方向。 Thank you for your time! 感谢您的时间!

NotificationCompat.Builder.setContentIntent NotificationCompat.Builder.setContentIntent

Supply a PendingIntent to send when the notification is clicked. 提供单击通知时发送的PendingIntent。

You're using 您正在使用

Intent newIntent = new Intent(context, AddNoteActivity.class);

So, in your AddNoteActivity you need to get the instance of your MediaPlayer and call stop(). 因此,在您的AddNoteActivity中,您需要获取MediaPlayer的实例并调用stop()。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM