如果我停止活动服务:
Intent locationIntent = new Intent(getApplicationContext(),
LocationService.class);
stopService(locationIntent);
并覆盖服务的onDestroy方法,以便它不会调用super.onDestroy()
@Override
public void onDestroy() {
//super.onDestroy();
}
它还活着吗?
答案 0 :(得分:1)
不,它不会活着。 onDestroy()
方法允许您清除Service
可能为其操作分配的任何资源,但它不会影响组件本身的生命周期。