我从 onCreateView 开始我的服务
getActivity().startService(new Intent(getActivity(), LocationService.class));
我试着像这样停止我的服务
@Override
public void onDestroyView() {
getActivity().stopService(new Intent(getActivity(),LocationService.class));
super.onDestroyView();
}
@Override
public void onStop() {
getActivity().stopService(new Intent(getActivity(), LocationService.class));
super.onStop();
}
@Override
public void onDestroy() {
getActivity().stopService(new Intent(getActivity(), LocationService.class));
super.onDestroy();
}