Android后台服务在启动时会立即关闭

时间:2016-08-26 10:49:41

标签: java android debugging android-studio background-process

我有这个后台服务:

public class UjsagFeedReaderService extends IntentService {

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

    Timer timerbd = new Timer();
    TimerTask taskbd = new TimerTask() {
        public int a = 0;
        @Override
        public void run() {
            a++;
            Toast.makeText(getBaseContext(), "Letelt egy perc, új cikkek keresése. (debug infó)", Toast.LENGTH_LONG).show();
           debug();
            Log.w("logd", "megy");

        }
    };

@Override
protected final void onHandleIntent(Intent workIntent) {
    Log.w("logd", "run");
    boolean run = workIntent.getBooleanExtra("Belfold",false);
    boolean Belfold = workIntent.getBooleanExtra("Belfold",false);
    boolean Kulfold = workIntent.getBooleanExtra("Kulfold",false);
    boolean Gazdasag = workIntent.getBooleanExtra("Gazdasag",false);
    boolean TudTech = workIntent.getBooleanExtra("TudTech",false);
    boolean Sport = workIntent.getBooleanExtra("Sport",false);
    boolean Eletmod = workIntent.getBooleanExtra("Eletmod",false);
    boolean Kultura = workIntent.getBooleanExtra("Kultura",false);
    boolean Autok = workIntent.getBooleanExtra("Autok",false);
    boolean Egeszseg = workIntent.getBooleanExtra("Egeszseg",false);
    try {
        timerbd.scheduleAtFixedRate(taskbd, 60000, 60000);
    }
    catch(Exception ex) {
        Toast.makeText(getBaseContext(), "Hiba", Toast.LENGTH_LONG).show();
    }
    }

public void debug(){

    NotificationCompat.Builder mBuilder =
            new NotificationCompat.Builder(this)
                    .setSmallIcon(R.mipmap.ic_launcher)
                    .setContentTitle("Teszt")
                    .setContentText("Szia. Ez csak egy teszt" );
    NotificationManager mNotificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);

    mNotificationManager.notify(2004, mBuilder.build());
}
@Override
public void onDestroy() {
    Toast.makeText(this, "Mostantól nem fognak értesítések megjelenni.", Toast.LENGTH_LONG).show();
    timerbd.cancel();
}

}

  

但是当我开始时,用:

Intent in = new Intent(getBaseContext(), UjsagFeedReaderService.class);
MainActivity.this.startService(in);
  

它立即停止,运行" OnDestroy方法"

在任务/应用程序管理器中,我无法看到该过程,因此它已停止。 此过程用于安排通知。我知道,它在执行后停止,但有计时器。

  

计时器无法启动。

1 个答案:

答案 0 :(得分:3)

计时器正在启动,因为在调用onHandleIntent()之后,IntentService实例不可用。如果您想要安排常规计时器,请通过正常服务

相关问题