Update data from server at regular time intervals in background process using AlarmManager, BroadcastReceiver, Service and Notification Manager.
First Activate AlarmManager. Write below code in Activity class
public class MainActivity extends ListActivity {
private static final long REPEAT_TIME = 1000 * 30;
@Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); setRecurringAlarm(this); }
private void setRecurringAlarm(Context context) {
Calendar updateTime = Calendar.getInstance();
updateTime.setTimeZone(TimeZone.getDefault());
updateTime.set(Calendar.HOUR_OF_DAY, 12);
updateTime.set(Calendar.MINUTE, 30);
Intent downloader = new Intent(context, MyStartServiceReceiver.class);
downloader.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
PendingIntent pendingIntent = PendingIntent.getBroadcast(context, 0, downloader, PendingIntent.FLAG_CANCEL_CURRENT);
AlarmManager alarmManager = (AlarmManager) getSystemService(Context.ALARM_SERVICE);
alarmManager.setRepeating(AlarmManager.RTC_WAKEUP, updateTime.getTimeInMillis(), AlarmManager.INTERVAL_FIFTEEN_MINUTES, pendingIntent);
Log.d("MyActivity", "Set alarmManager.setRepeating to: " + updateTime.getTime().toLocaleString());
}
}
First create BroadcastReceiver Class
public class MyStartServiceReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
Intent dailyUpdater = new Intent(context, MyService.class);
context.startService(dailyUpdater);
Log.d("AlarmReceiver", "Called context.startService from AlarmReceiver.onReceive");
}
}
When application is closed or is in background, periodically fetch data from server and show notification on status bar.
Create Service
public class MyService extends IntentService {public MyService() {
super("MyServiceName");}@Overrideprotected void onHandleIntent(Intent intent) {Log.d("MyService", "About to execute MyTask");new MyTask().execute();this.sendNotification(this);}private class MyTask extends AsyncTask<String, Void, Boolean> {@Override
protected Boolean doInBackground(String... strings) {
Log.d("MyService - MyTask", "Calling doInBackground within MyTask");return false;}
}private void sendNotification(Context context) {Intent notificationIntent = new Intent(context, MainActivity.class);PendingIntent contentIntent = PendingIntent.getActivity(context, 0, notificationIntent, 0);NotificationManager notificationMgr = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);Notification notification = new Notification(android.R.drawable.star_on, "Refresh", System.currentTimeMillis());notification.flags |= Notification.FLAG_AUTO_CANCEL;notification.setLatestEventInfo(context, "Title","Content", contentIntent);notificationMgr.notify(0, notification);}}
Don't forget write below lines in AndroidManifest.xml File
<service android:name="MyService" ></service>
<receiver android:name="MyStartServiceReceiver" ></receiver>