我在Android中使用Alarm Manager遇到问题。

在onCreate方法中:

        notificationCount = notificationCount + 1;
        AlarmManager mgr = (AlarmManager) context
                .getSystemService(Context.ALARM_SERVICE);
        Intent notificationIntent = new Intent(context,
                ReminderAlarm.class);
notificationIntent.putExtra("NotifyCount", notificationCount);
        PendingIntent pi = PendingIntent.getBroadcast(context,
                notificationCount, notificationIntent,
                PendingIntent.FLAG_UPDATE_CURRENT);
        mgr.setInexactRepeating(AlarmManager.RTC_WAKEUP, calendar.getTimeInMillis(),
                60000+System.currentTimeMillis(), pi);

        ComponentName receiver = new ComponentName(context, BootReceiver.class);
        PackageManager pm = context.getPackageManager();

        pm.setComponentEnabledSetting(receiver,
                PackageManager.COMPONENT_ENABLED_STATE_ENABLED,
                PackageManager.DONT_KILL_APP);


提醒警报等级:

public class ReminderAlarm extends BroadcastReceiver {
private NotificationManager mNotificationManager;
private Notification notification;

@Override
public void onReceive(Context context, Intent intent) {
    mNotificationManager = (NotificationManager) context
            .getSystemService(Context.NOTIFICATION_SERVICE);
    PendingIntent contentIntent = PendingIntent
            .getActivity(context, 0, new Intent(), 0);
    notification = new Notification(
            R.drawable.ic_launcher, "Notification",
            System.currentTimeMillis());
    notification
            .setLatestEventInfo(context, "AlarmActivated", "Hello", contentIntent);
    mNotificationManager.notify(
            Integer.parseInt(intent.getExtras()
                    .get("NotifyCount").toString()),
            notification); }}


在启动接收器类中:

 public void onReceive(Context context, Intent i) {
    scheduleAlarms(context);
}

static void scheduleAlarms(Context context) {
    Calendar calendar = Calendar.getInstance();
    calendar.setTimeInMillis(System.currentTimeMillis());
    calendar.set(Calendar.HOUR_OF_DAY, 0);
    calendar.set(Calendar.MINUTE, 1);
    AlarmManager mgr = (AlarmManager) context
            .getSystemService(Context.ALARM_SERVICE);
    Intent notificationIntent = new Intent(context, ReminderAlarm.class);
    PendingIntent pi = PendingIntent.getService(context, 0,
            notificationIntent, 0);

    mgr.setInexactRepeating(AlarmManager.RTC_WAKEUP,
            calendar.getTimeInMillis(),
            60000+System.currentTimeMillis(),
                pi);
}


在我的清单文件中:

 <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
 <receiver android:name=".ReminderAlarm" >
    </receiver>
    <receiver
        android:name=".BootReceiver"
        android:enabled="false" >
        <intent-filter>
            <action android:name="android.intent.action.BOOT_COMPLETED" >
            </action>
        </intent-filter>
    </receiver>


我试图将警报设置为每分钟重复一次并提示用户通知。但是它是以这种方式工作的:当我启动应用程序时,它会一次设置警报。提示一次提示后,然后停止每分钟重复一次。

我想知道我的代码哪一部分出错了。提前致谢。

编辑

因此,基本上我希望警报管理器每天早上12点重复一次。这是代码:

        Calendar calendar = Calendar.getInstance();
    calendar.setTimeInMillis(System.currentTimeMillis());
    calendar.set(Calendar.HOUR_OF_DAY, 0 );
    calendar.set(Calendar.MINUTE, 1);
        notificationCount = notificationCount + 1;
        AlarmManager mgr = (AlarmManager) context
                .getSystemService(Context.ALARM_SERVICE);
        Intent notificationIntent = new Intent(context,
                ReminderAlarm.class);
    PendingIntent pi = PendingIntent.getBroadcast(context,
                notificationCount, notificationIntent,
                PendingIntent.FLAG_UPDATE_CURRENT);
        mgr.setRepeating(AlarmManager.RTC_WAKEUP,
                calendar.getTimeInMillis(), AlarmManager.INTERVAL_DAY, pi);

        ComponentName receiver = new ComponentName(context, BootReceiver.class);
        PackageManager pm = context.getPackageManager();

        pm.setComponentEnabledSetting(receiver,
                PackageManager.COMPONENT_ENABLED_STATE_ENABLED,
                PackageManager.DONT_KILL_APP);


因此,通过将重复设置为这样,它是否仍将像以前一样重复运行44年?还是每天凌晨12点重复?

最佳答案

setInexactRepeating()方法中的第三个参数是间隔,以毫秒为单位。您将其设置为自1970年1月1日UTC 00:00:00.0 UTC加上60000以来经过的毫秒数,从而使下一个计划的事件发生在大约44年之后。更改您的代码,如下所示:

mgr.setInexactRepeating(AlarmManager.RTC_WAKEUP,
    calendar.getTimeInMillis(), 60000, pi);

10-07 19:31
查看更多