2

私はこのコードを持っています:

目覚ましを設定する:

public void setAlarm()
{
    Calendar Calendar_Object = Calendar.getInstance();

    Calendar_Object.add (Calendar.DAY_OF_YEAR, 1);

    Calendar_Object.set(Calendar.HOUR_OF_DAY, 0);
    Calendar_Object.set(Calendar.MINUTE, 0);
    Calendar_Object.set(Calendar.SECOND, 1);

    Intent myIntent = new Intent(Main.this, AlarmReceiver.class);

    PendingIntent pendingIntent = PendingIntent.getBroadcast(Main.this,
            0, myIntent, PendingIntent.FLAG_CANCEL_CURRENT);

    AlarmManager alarmManager = (AlarmManager) getSystemService(ALARM_SERVICE);

    alarmManager.setRepeating(AlarmManager.RTC, Calendar_Object.getTimeInMillis(),1000*60*60*24, pendingIntent);
}

放送受信機:

public class AlarmReceiver extends BroadcastReceiver {

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

      Intent myIntent = new Intent(context, NotificationService.class);
      context.startService(myIntent);
    }

} 

サービス:

public class NotificationService extends Service {

private NotificationManager mManager;

@Override
public IBinder onBind(Intent arg0) {
    // TODO Auto-generated method stub
    return null;
}

@Override
public void onCreate() {
    super.onCreate();

}

@SuppressWarnings("deprecation")
@Override
public void onStart(Intent intent, int startId) {
    super.onStart(intent, startId);

    mManager = (NotificationManager) this.getApplicationContext()
            .getSystemService( this.getApplicationContext().NOTIFICATION_SERVICE);

    Intent intent1 = new Intent(this.getApplicationContext(), ABC.class);

    Notification notification = new Notification(R.drawable.ic_launcher,
            "xxx", System.currentTimeMillis());

    intent1.addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP
            | Intent.FLAG_ACTIVITY_CLEAR_TOP);

    PendingIntent pendingNotificationIntent = PendingIntent.getActivity(
            this.getApplicationContext(), 0, intent1,
            PendingIntent.FLAG_UPDATE_CURRENT);

    notification.flags |= Notification.FLAG_AUTO_CANCEL;

    notification.setLatestEventInfo(this.getApplicationContext(),
            "abc", "xyz",
            pendingNotificationIntent);

    mManager.notify(0, notification);
    }
}

アラームを 00:00:01 に設定した後はすべて完璧ですが、次回は問題が発生します。PendingIntent は、24 時間間隔の間に 6 ~ 8 回トリガーされます。各トリガーの時間が同じかどうかは覚えていませんが、毎日1回にしたいです。コードの何が問題になっていますか?

4

1 に答える 1

1

これにより、毎日 00:05 に鳴るアラームが作成されます。重要な部分は、AlarmManager.INTERVAL_DAY

Date date = new Date();
Calendar cal = Calendar.getInstance();
cal.setTime(date);
cal.set(Calendar.HOUR_OF_DAY, 0);
cal.set(Calendar.MINUTE, 5);
cal.set(Calendar.SECOND, 0);
cal.set(Calendar.MILLISECOND, 0);
cal.add(Calendar.HOUR, 24);

PendingIntent pi = PendingIntent.getBroadcast(context, 0, alarmIntent, 0);
mgr.cancel(pi);
mgr.setRepeating(AlarmManager.RTC, cal.getTimeInMillis(), AlarmManager.INTERVAL_DAY, pi);

また、新しいアラームを再設定するときは、以前の同様のアラームを必ずキャンセルすることを忘れないでください。そうしないと、以前に設定されたアラームと新しいアラームがすべてオフになります。上記を参照してください。mgr.cancel(pi);

于 2012-11-23T13:34:28.610 に答える