Here is my code for fragment extending ListFragment and below are the errors it is showing.Almost Same code is working fine for activity except that in activity i am getting
try this.
ViewGroup rootView = (ViewGroup) inflater.inflate(R.layout.soundcloud, container, false);
and also in your onItemClick
// Starting single contact activity
Intent in = new Intent(getActivity().getApplicationContext(),
SingleContactActivity.class);
in.putExtra("name", TAG_TITLE);
in.putExtra("id", cost);
startActivity(in);