Android.App.LocalActivityManager Members

The members of Android.App.LocalActivityManager are listed below.

See Also: Inherited members from Java.Lang.Object

Public Constructors

Create a new LocalActivityManager for holding activities running within the given parent.

Protected Constructors

A constructor used when creating managed representations of JNI objects; called by the runtime.

Public Properties

[read-only]
CurrentActivityActivity. Retrieve the Activity that is currently running.
[read-only]
CurrentIdstring. Retrieve the ID of the activity that is currently running.

Protected Properties

[read-only]
override
ThresholdClassIntPtr. This API supports the Mono for Android infrastructure and is not intended to be used directly from your code.
[read-only]
override
ThresholdTypeType. This API supports the Mono for Android infrastructure and is not intended to be used directly from your code.

Public Methods

DestroyActivity(string, bool) : Android.Views.Window
Destroy the activity associated with a particular id.
DispatchCreate(Android.OS.Bundle)
Restore a state that was previously returned by LocalActivityManager.SaveInstanceState.
DispatchDestroy(bool)
Called by the container activity in its Activity.OnDestroy so that LocalActivityManager can perform the corresponding action on the activities it holds.
DispatchPause(bool)
Called by the container activity in its Activity.OnPause so that LocalActivityManager can perform the corresponding action on the activities it holds.
DispatchResume()
Called by the container activity in its Activity.OnResume so that LocalActivityManager can perform the corresponding action on the activities it holds.
DispatchStop()
Called by the container activity in its Activity.OnStop so that LocalActivityManager can perform the corresponding action on the activities it holds.
GetActivity(string) : Activity
Return the Activity object associated with a string ID.
RemoveAllActivities()
Remove all activities from this LocalActivityManager, performing an Activity.OnDestroy on any that are currently instantiated.
SaveInstanceState() : Android.OS.Bundle
Retrieve the state of all activities known by the group.
StartActivity(string, Android.Content.Intent) : Android.Views.Window
Start a new activity running in the group.