- id
- The id of the dialog.
- args
- The dialog arguments provided to Activity.ShowDialog(int, Android.OS.Bundle).
Documentation for this section has not yet been entered.
Callback for creating dialogs that are managed (saved and restored) for you by the activity. The default implementation calls through to Activity.OnCreateDialog(int) for compatibility. If you are targeting NoType:android/os/Build$VERSION_CODES;Href=../../../reference/android/os/Build.VERSION_CODES.html#HONEYCOMB or later, consider instead using a Android.App.DialogFragment instead.
If you use Activity.ShowDialog(int), 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.
If you would like the activity to manage saving and restoring dialogs for you, you should override this method and handle any ids that are passed to Activity.ShowDialog(int).
If you would like an opportunity to prepare your dialog before it is shown, override Activity.OnPrepareDialog(int, Android.App.Dialog, Android.App.Dialog).