I start my service from onCreateView like
getActivity().startService(new Intent(getActivity(), LocationService.class));
And I try to stop my service like this
@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();
}