I\'m converting all my Activities to Fragments so that I can use them in a ViewPager.
I\'ve searched for this but I couldn\'t find a satisfying answer, so that\'s wh
1.Left the onCreate empty and just call super.onCreate()
2.Instead of findViewById() use getActivity().findViewById() always use getActivity() where you need context of the view.
Do all other operations in onCreateview()