5 Eylül 2016 Pazartesi

IntentService Sınıfı

Giriş
Servis bir kere çalıştıktan sonra durur.

OnHandleIntent metodu
Şöyle yaparız.
public class RestartAlarmsService extends IntentService{

  public RestartAlarmsService() {
    super("RestartAlarmsService");
  }

  @Override
  protected void onHandleIntent(Intent intent) {

    // Restart your alarms here.
    // open database, iterate through every alarm and set them again

  }
}

Hiç yorum yok:

Yorum Gönder