What is lifecycle of DialogFragment

前端 未结 3 1329
心在旅途
心在旅途 2020-12-30 02:50

I could not find proper lifecycle of android.support.v4.app.DialogFragment by searching on Google. I need this for some implementation. As we know DialogF

3条回答
  •  爱一瞬间的悲伤
    2020-12-30 02:53

    DialogFragment does various things to keep the fragment's lifecycle driving it, instead of the Dialog. Note that dialogs are generally autonomous entities -- they are their own window, receiving their own input events, and often deciding on their own when to disappear (by receiving a back key event or the user clicking on a button).

    Source : https://developer.android.com/reference/android/app/DialogFragment#lifecycle

提交回复
热议问题