Android停止Service
2018-02-07 本文已影响0人
质天竹树静风止
有时我们需要在Service的onCreate方法里就去停止该Service,并不想继续执行下面的onStartCommand等方法。以下方法亲测有效:
stopSelf(); // 先stopSelf,确保killProcess后service不会重启
android.os.Process.killProcess(android.os.Process.myPid());
return;
有时我们需要在Service的onCreate方法里就去停止该Service,并不想继续执行下面的onStartCommand等方法。以下方法亲测有效:
stopSelf(); // 先stopSelf,确保killProcess后service不会重启
android.os.Process.killProcess(android.os.Process.myPid());
return;