Was soll in onStartCommand für einen Dienst zurückgegeben werden?

Ich habe die Dokumentation durchgesehen und manchmal dieonStartCommand() kehrt zurückSTART_NOT_STICKY, manchmal gibt es folgendes zurück:

@Override
public int onStartCommand(Intent intent, int flags, int startId) {
    // TODO Auto-generated method stub
    return super.onStartCommand(intent, flags, startId);
}

Ich bin jetzt verwirrt, warum einige Dienste zurückkehrensuper.onStartCommand(intent, flags, startId);

Antworten auf die Frage(2)

Ihre Antwort auf die Frage