I want To change my Activity
to Fragment
I tried hard but I am unable to Change my Activity To Fragment. Can Anyone Please Tell me How to do this?
Changing an Activity class to Fragment class requires extending Fragment super class instead of Activity , in addition to implementing some Callback methods that are specific to fragments, like: OnCreateView(), OnActivityCreated() ...
Fragments can be started and initiated either programmatically by another fragments, activities or using fragment tag in the XML layout from within another fragment or activity.
Please check the fragment guide on android developers site:
http://developer.android.com/training/basics/fragments/creating.html
OR
http://developer.android.com/guide/components/fragments.html