I have an activity which does a fragment transaction
DetailFragment newFragment = new DetailFragment(); transaction.replace(R.id.mylist, newFragment); transa
Make sure you call getActivity() in or after onAttach(), as before then it will return null.
getActivity()
onAttach()
null