Deseo llamar a un servicio cuando se inicia cierta actividad. Por lo tanto, aquí está la clase de servicio:Servicio de inicio en Android
public class UpdaterServiceManager extends Service {
private final int UPDATE_INTERVAL = 60 * 1000;
private Timer timer = new Timer();
private static final int NOTIFICATION_EX = 1;
private NotificationManager notificationManager;
public UpdaterServiceManager() {}
@Override
public IBinder onBind(Intent intent) {
// TODO Auto-generated method stub
return null;
}
@Override
public void onCreate() {
// Code to execute when the service is first created
}
@Override
public void onDestroy() {
if (timer != null) {
timer.cancel();
}
}
@Override
public int onStartCommand(Intent intent, int flags, int startid) {
notificationManager = (NotificationManager)
getSystemService(Context.NOTIFICATION_SERVICE);
int icon = android.R.drawable.stat_notify_sync;
CharSequence tickerText = "Hello";
long when = System.currentTimeMillis();
Notification notification = new Notification(icon, tickerText, when);
Context context = getApplicationContext();
CharSequence contentTitle = "My notification";
CharSequence contentText = "Hello World!";
Intent notificationIntent = new Intent(this, Main.class);
PendingIntent contentIntent = PendingIntent.getActivity(this, 0,
notificationIntent, 0);
notification.setLatestEventInfo(context, contentTitle, contentText,
contentIntent);
notificationManager.notify(NOTIFICATION_EX, notification);
Toast.makeText(this, "Started!", Toast.LENGTH_LONG);
timer.scheduleAtFixedRate(new TimerTask() {
@Override
public void run() {
// Check if there are updates here and notify if true
}
}, 0, UPDATE_INTERVAL);
return START_STICKY;
}
private void stopService() {
if (timer != null) timer.cancel();
}
}
Y así es como yo lo llamo:
Intent serviceIntent = new Intent();
serviceIntent.setAction("cidadaos.cidade.data.UpdaterServiceManager");
startService(serviceIntent);
El problema es que no pasa nada. El bloque de código anterior se llama al final de la actividad onCreate
. Ya depuré y no se lanza ninguna excepción.
¿Alguna idea?
Cuidado con contadores de tiempo - que yo sepa cuando su servicio se cierra para liberar recursos este temporizador no se reiniciará cuando se reinicie el servicio.Tiene razón: '' 'START_STICKY'' reiniciará el servicio, pero solo se llamará a onCreate y no se reinicializará el temporizador var. Puede jugar con '' 'START_REDELIVER_INTENT''', el servicio de alarma o el Programador de tareas API 21 para solucionar esto. – georg
En caso de que lo haya olvidado, asegúrese de haber registrado el servicio en el manifiesto de Android usando ' ' dentro de la etiqueta de la aplicación. –