UNCCGameDay/src/com/uncc/gameday/activities/Home.java

51 lines
1.4 KiB
Java
Raw Normal View History

package com.uncc.gameday.activities;
2013-10-09 20:20:04 -04:00
import android.app.AlarmManager;
import android.app.PendingIntent;
import android.content.Intent;
2013-10-09 19:39:20 -04:00
import android.content.SharedPreferences;
import android.content.SharedPreferences.Editor;
import android.os.Bundle;
import com.uncc.gameday.R;
2013-10-09 20:20:04 -04:00
import com.uncc.gameday.alerts.AlertService;
public class Home extends MenuActivity {
2013-10-30 14:15:38 -04:00
2013-10-09 20:20:04 -04:00
private final long alarmRate = 300000; // 5 Minutes
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_home);
2013-10-30 14:15:38 -04:00
2013-10-09 20:20:04 -04:00
// Start up the AlarmManager to fetch alerts in the background
AlarmManager am = (AlarmManager) this.getSystemService(ALARM_SERVICE);
Intent alertFetcher = new Intent(this, AlertService.class);
PendingIntent pendingAlertFetcher = PendingIntent.getService(this, 0, alertFetcher, 0);
2013-10-09 20:20:04 -04:00
// Cancel any previous alarm managers, and start the new one
am.cancel(pendingAlertFetcher);
am.setRepeating(0, this.alarmRate, this.alarmRate, pendingAlertFetcher);
// Double check if we need to do any first-run code
this.onFirstRun();
2013-10-09 19:39:20 -04:00
}
protected void onFirstRun() {
2013-10-09 19:39:20 -04:00
SharedPreferences settings = this.getPreferences(MODE_PRIVATE);
if (settings.getBoolean("FIRST_RUN", true)) {
// First run code
Editor editor = settings.edit();
editor.putBoolean("FIRST_RUN", false);
editor.commit();
}
}
}