Остановите AlarmManager, нажав на уведомление - PullRequest
0 голосов
/ 16 мая 2018

Добрый день, надеюсь, что кто-нибудь сможет мне помочь!У меня есть AlarmManager и NotificationCompat в моем приложении.Я хочу прекратить воспроизведение будильника, когда просто нажимаю на уведомлениеВот мой код:

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:

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);
}

и setAlarm в 3-м классе:

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);

Надеюсь, кто-то поможет мне здесь, потому что я потерял почтивесь день, чтобы найти решение.Спасибо за ваше время!

1 Ответ

0 голосов
/ 16 мая 2018

NotificationCompat.Builder.setContentIntent

Укажите PendingIntent для отправки при нажатии на уведомление.

Вы используете

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

Итак, в вашей AddNoteActivity вам нужно получить экземпляр вашего MediaPlayer и вызвать stop ().

...