Cannot call getSupportFragmentManager() from activity
get current activity from parent, then using this code
getActivity().getSupportFragmentManager()
Your activity doesn't extend FragmentActivity from the support library, therefore the method is not present in the superclass
If you are targeting api 11 or above, you could use Activity.getFragmentManager instead.
extend class to AppCompatActivity
instead of Activity