分类: 嵌入式
2011-03-17 19:50:01
If you use , the activity will call through to
this method the first time, and hang onto it thereafter. Any dialog
that is created by this method will automatically be saved and restored
for you, including whether it is showing.
当你调用showDialog(int )方法时,系统会自动调用此方法,如果是第一次调用,会根据你对onCreateDialog(int ,Bundle)的实现创建此Dialog,然后系统为你保存下此dialog,以备下次再调用showDialog(int)方法时直接展现系统为你保存的此Dialog,而不会再调用onCreateDialog(int ,Bundle ) 方法去创建Dialog。
如果你想要系统为你管理保存dialogs,你就得自己重写这个方法。当然你也可以不选择此方法,随时用,随时创建。
若你想让系统调用此方法之前做点什么,你可以重写方法。
id | The id of the dialog. |
---|---|
args | The dialog arguments provided to . |