What is different between getContext() and getActivity() from Fragment in support library?
getContext()
getActivity()
Fragment
Do they always return the same obje
getContext() :
Returns the context view only current running activity.
getActivity():
Return the Activity this fragment is currently associated with.