Dialog.OnActionModeFinished(ActionMode) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Called when an action mode has been finished.
[Android.Runtime.Register("onActionModeFinished", "(Landroid/view/ActionMode;)V", "GetOnActionModeFinished_Landroid_view_ActionMode_Handler")]
public virtual void OnActionModeFinished(Android.Views.ActionMode? mode);
[<Android.Runtime.Register("onActionModeFinished", "(Landroid/view/ActionMode;)V", "GetOnActionModeFinished_Landroid_view_ActionMode_Handler")>]
abstract member OnActionModeFinished : Android.Views.ActionMode -> unit
override this.OnActionModeFinished : Android.Views.ActionMode -> unit
Parameters
- mode
- ActionMode
ActionMode: The mode that was just finished.
Implements
- Attributes
Remarks
Called when an action mode has been finished. The appropriate mode callback method will have already been invoked. Note that if you override this method you should always call through to the superclass implementation by calling super.onActionModeFinished(mode). If you override this method you must call through to the superclass implementation.
Android reference for android.app.Dialog.onActionModeFinished.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.