Back to project page split.
The source code is released under:
MIT License
If you think the Android project split listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.devfestco.split.Services; // w ww . j av a 2 s . com import android.app.AlarmManager; import android.app.IntentService; import android.app.PendingIntent; import android.content.Context; import android.content.Intent; import android.content.SharedPreferences; import android.os.Vibrator; import android.preference.PreferenceManager; import android.support.v4.app.NotificationManagerCompat; import com.devfestco.split.IterationActivity; import com.devfestco.split.R; /** * Created by PaulTR on 6/29/14. */ public class TimerService extends IntentService { public TimerService() { super("TimerService"); } @Override protected void onHandleIntent(Intent intent) { String action = intent.getAction(); if (IterationActivity.ACTION_SHOW_ALARM.equals(action)) { showAlarm(); setRestTimer(); } else if (IterationActivity.ACTION_REMOVE_TIMER.equals(action)) { removeAlarm(); } } private void showAlarm() { final Vibrator v = (Vibrator) getSystemService(Context.VIBRATOR_SERVICE); long[] pattern = { 0, getResources().getInteger(R.integer.vibration_duration) }; v.vibrate(pattern, -1); // Intent intent = new Intent(this, IterationActivity.class); // intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); // startActivity(intent); } private void setRestTimer() { final Vibrator v = (Vibrator) getSystemService(Context.VIBRATOR_SERVICE); long[] pattern = { 0, getResources().getInteger(R.integer.vibration_duration) }; v.vibrate(pattern, -1); Intent intent = new Intent(this, IterationActivity.class); intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); intent.putExtra(IterationActivity.ACTION_START_REST_TIMER, true); startActivity(intent); } private void removeAlarm() { NotificationManagerCompat notificationManager = NotificationManagerCompat.from(this); notificationManager.cancel(1); AlarmManager alarmManager = (AlarmManager) getSystemService(Context.ALARM_SERVICE); Intent intent = new Intent(IterationActivity.ACTION_SHOW_ALARM, null, this, TimerService.class); PendingIntent pendingIntent = PendingIntent.getService(this, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT); alarmManager.cancel(pendingIntent); SharedPreferences pref = PreferenceManager.getDefaultSharedPreferences(this); SharedPreferences.Editor editor = pref.edit(); editor.putLong(IterationActivity.SAVED_STATE_SELECTED_DURATION, 0); editor.apply(); } }