Android.App.DialogFragment.Show Method
Display the dialog, adding the fragment to the given FragmentManager.

Syntax

[Android.Runtime.Register("show", "(Landroid/app/FragmentManager;Ljava/lang/String;)V", "GetShow_Landroid_app_FragmentManager_Ljava_lang_String_Handler")]
public virtual void Show (FragmentManager manager, string tag)

Parameters

manager
The FragmentManager this fragment will be added to.
tag
The tag for this fragment, as per FragmentTransaction.Add(Fragment, System.String).

Remarks

Display the dialog, adding the fragment to the given FragmentManager. This is a convenience for explicitly creating a transaction, adding the fragment to it with the given tag, and committing it. This does not add the transaction to the back stack. When the fragment is dismissed, a new transaction will be executed to remove it from the activity.

[Android Documentation]

Requirements

Namespace: Android.App
Assembly: Mono.Android (in Mono.Android.dll)
Assembly Versions: 0.0.0.0
Since: Added in API level 11