I want to start service from fragment from a list view item. I am trying to call service with:
startService(new Intent(getActivity(),myPlayService.class));
Replace
with
getActivity().startService(new Intent(getActivity(),myPlayService.class));