AlarmManager + NotificationManager не работает - PullRequest
0 голосов
/ 19 июня 2020

Прежде всего, я хотел бы поблагодарить вас за то, что вы перешли на эту тему. Большое спасибо за то, что нашли время, чтобы прочитать это.

Я планировал для приложения sh уведомление в указанное c время. Я следил за некоторыми учебными пособиями в Интернете, но, похоже, это не работает.

В самом коде нет сообщения об ошибке, но уведомление не выходит.

Вот мой "Notification_receiver. java "файл:

package com.example.reviewerapplication;

import android.app.NotificationChannel;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.os.Build;

import androidx.annotation.RequiresApi;
import androidx.core.app.NotificationCompat;

public class Notification_receiver extends BroadcastReceiver {



@Override
public void onReceive(Context context, Intent intent) {

    NotificationManager notificationManager = (NotificationManager)context.getSystemService(Context.NOTIFICATION_SERVICE);

    Intent repeating_intent = new Intent(context,Chapterchoice.class);
    String daily10 = "daily";
    intent.putExtra("daily",daily10);
    repeating_intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
    PendingIntent pendingIntent = PendingIntent.getActivity(context,100,repeating_intent,PendingIntent.FLAG_UPDATE_CURRENT);



    NotificationCompat.Builder builder = new NotificationCompat.Builder(context)
            .setContentIntent(pendingIntent)
            .setSmallIcon(R.drawable.ic_launcher)
            .setContentTitle("Sample Title")
            .setContentText("same message")
            .setAutoCancel(true);

    if (intent.getAction().equals("MY_NOTIFICATION_MESSAGE")) {
        notificationManager.notify(100, builder.build());
    }


  }
}

Это то, что у меня в MainActivity:

       //Daily Notification
    val calendar = Calendar.getInstance()

    calendar.set(Calendar.HOUR_OF_DAY,21)
    calendar.set(Calendar.MINUTE,53)
    calendar.set(Calendar.SECOND,0)

    val intent2 = Intent(this, Notification_receiver::class.java)
    intent2.setAction("MY_NOTIFICATION_MESSAGE")
    var pendingIntent = PendingIntent.getBroadcast(this,100,intent2,PendingIntent.FLAG_UPDATE_CURRENT )
    var alarmManager = getSystemService(Context.ALARM_SERVICE) as AlarmManager
    alarmManager.setRepeating(AlarmManager.RTC_WAKEUP,calendar.timeInMillis,AlarmManager.INTERVAL_DAY,pendingIntent)

1 Ответ

0 голосов
/ 20 июня 2020

Я только что исправил это.

Моя проблема в том, что я использовал «активность» в манифесте вместо использования «получателя»

...