Android服务停止

时间:2016-05-25 14:28:51

标签: android service

如果我停止活动服务:

Intent locationIntent = new Intent(getApplicationContext(),
            LocationService.class);
    stopService(locationIntent);

并覆盖服务的onDestroy方法,以便它不会调用super.onDestroy()

@Override
public void onDestroy() {
    //super.onDestroy();
}

它还活着吗?

1 个答案:

答案 0 :(得分:1)

不,它不会活着。 onDestroy()方法允许您清除Service可能为其操作分配的任何资源,但它不会影响组件本身的生命周期。