Activity.FinishFromChild(Activity) 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.
This is called when a child activity of this one calls its
#finish
method.
[Android.Runtime.Register("finishFromChild", "(Landroid/app/Activity;)V", "GetFinishFromChild_Landroid_app_Activity_Handler")]
public virtual void FinishFromChild (Android.App.Activity? child);
[<Android.Runtime.Register("finishFromChild", "(Landroid/app/Activity;)V", "GetFinishFromChild_Landroid_app_Activity_Handler")>]
abstract member FinishFromChild : Android.App.Activity -> unit
override this.FinishFromChild : Android.App.Activity -> unit
Parameters
- child
- Activity
The activity making the call.
- Attributes
Remarks
This is called when a child activity of this one calls its #finish
method. The default implementation simply calls finish() on this activity (the parent), finishing the entire group.
This member is deprecated. Use #finish()
instead.
Java documentation for android.app.Activity.finishFromChild(android.app.Activity)
.
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.