Slide 3
Slide 3 text
3
Some explanatory text to
introduce the theme of
the deck and such.
AlarmManager
AlarmManager manager = (AlarmManager) context.getSystemService(ALARM_SERVICE);
Intent intent = new Intent(context, SyncJobService.class);
manager.setInexactRepeating(ELAPSED_REALTIME,
SystemClock.elapsedRealtime() + INTERVAL_MILLIS, INTERVAL_MILLIS,
PendingIntent.getService(context, REQUEST_CODE, intent,
FLAG_CANCEL_CURRENT));