How TO Change Activity To Fragment

前端 未结 2 832
予麋鹿
予麋鹿 2020-12-17 05:32

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?

2条回答
  •  囚心锁ツ
    2020-12-17 06:01

    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

提交回复
热议问题