Tôi có totalTime = 1 giờ và và intervalTime = 5min, cả hai đều ở phần nghìn giây,Làm thế nào để dừng lặp lại các dịch vụ báo động trong Android?
Tôi muốn lặp lại dịch vụ GPSSetting tôi mỗi khoảng thời gian và sau khi hoàn thành totaltime này lặp đi lặp lại shoud được dừng lại.
AlarmManager am = (AlarmManager) getSystemService(ALARM_SERVICE);
Intent intent1 = new Intent(C2DMReceiver.this, GPSSetting.class);
PendingIntent pendingIntent = PendingIntent.getService(
C2DMReceiver.this, 0, intent1, 0);
am.setRepeating(AlarmManager.RTC, System.currentTimeMillis(), intervalTime,
pendingIntent);
Vậy làm thế nào để tôi có thể dừng báo thức lặp lại này?
Kính trọng, Girish
http://stackoverflow.com/questions/3330522/how-to-cancel-this-repeating-alarm – trante