gpt4 book ai didi

MainActivity 中的 Android 类不接收来自警报管理器的广播

转载 作者:行者123 更新时间:2023-11-30 01:04:05 26 4
gpt4 key购买 nike

我正在尝试使用警报管理器来发送和接收将调用方法来创建通知的广播。我希望即使在应用程序关闭时也能创建通知。我使用此方法创建了一个类,该类在警报管理器中创建警报:

@android.webkit.JavascriptInterface
public void qotd(String toast, int hour, int minute) {
// for testing purposes
Toast.makeText(mContext, (String.valueOf(hour) + " " + String.valueOf(minute)), Toast.LENGTH_SHORT).show();

// cancel other alarms first
Intent alarmtocancel = new Intent(mContext, loadqotd.class);
PendingIntent cancelIntent = PendingIntent.getBroadcast(mContext, 1001, alarmtocancel, PendingIntent.FLAG_CANCEL_CURRENT);
AlarmManager am = (AlarmManager) getSystemService(mContext.ALARM_SERVICE);
am.cancel(cancelIntent);
cancelIntent.cancel();

// create new alarm
Intent alarmintent = new Intent(mContext, loadqotd.class);
AlarmManager setam = (AlarmManager) getSystemService(mContext.ALARM_SERVICE);
PendingIntent pendingIntent = PendingIntent.getService(mContext, 0, alarmintent, 0);
Calendar calendar = Calendar.getInstance();
calendar.setTimeInMillis(System.currentTimeMillis());
calendar.set(Calendar.HOUR_OF_DAY, hour);
calendar.set(Calendar.MINUTE, minute);
setam.setRepeating(AlarmManager.RTC_WAKEUP, calendar.getTimeInMillis(), 24 * 60 * 60 * 1000, pendingIntent);
}

这是接收器,我把它放在主 Activity 中:

public class loadqotd extends BroadcastReceiver{

@Override
public void onReceive(Context context, Intent intent) {
// testing purposes
Toast.makeText(context, "received", Toast.LENGTH_SHORT).show();
Intent resultIntent = new Intent(context, QuestionOfTheDay.class);

NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(context);

mBuilder.setSmallIcon(R.drawable.notification_icon)
.setContentTitle("Your Question of the Day is ready!")
.setContentText("Check out the question of today")
.setContentIntent(PendingIntent.getActivity(context, 0, resultIntent, PendingIntent.FLAG_UPDATE_CURRENT));

int notid = 001;
NotificationManager notificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
notificationManager.notify(notid, mBuilder.build());
}
}

这是 list :

...
<application>
<receiver android:name=".MainActivity$loadqotd"></receiver>
</application>
...

我已经完成了警报管理器转储并在其中找到了广播。但是,当警报管理器触发时,永远不会调用 loadqotd,无论是在应用程序处于后台还是在应用程序中时。此外,它既不是由于构建错误也不是运行时异常。

最佳答案

当您使用嵌套类作为应用程序组件时 - 如问题中的 loadqotd 类 - 它必须是 public static。或者,您可以将其移至单独的类文件,并相应地更新 list 中的 name

无论选择哪种方式,您都需要更改 Receiver 类中的一些内容。您需要在传递给 onReceive() 方法的 Context 上调用 getSystemService(),因为它之前是在当前调用的MainActivity 实例,它将不再有权访问。此外,您还需要限定 NOTIFICATION_SERVICE 常量。

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

最后,您的闹钟的PendingIntent 需要是一个广播PendingIntent,因为您正在向接收器广播,而不是启动服务。将 getService() 更改为 getBroadcast()

PendingIntent pendingIntent = PendingIntent.getBroadcast(mContext, 0, alarmintent, 0);

关于MainActivity 中的 Android 类不接收来自警报管理器的广播,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39050904/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com