Loader.Reset 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 function will normally be called for you automatically by
android.app.LoaderManager
when destroying a Loader.
[Android.Runtime.Register("reset", "()V", "GetResetHandler")]
public virtual void Reset ();
[<Android.Runtime.Register("reset", "()V", "GetResetHandler")>]
abstract member Reset : unit -> unit
override this.Reset : unit -> unit
- Attributes
Remarks
This function will normally be called for you automatically by android.app.LoaderManager
when destroying a Loader. When using a Loader with android.app.LoaderManager
, you <em>must not</em> call this method yourself, or you will conflict with its management of the Loader.
Resets the state of the Loader. The Loader should at this point free all of its resources, since it may never be called again; however, its #startLoading()
may later be called at which point it must be able to start running again.
This updates the Loader's internal state so that #isStarted()
and #isReset()
will return the correct values, and then calls the implementation's #onReset()
.
Must be called from the process's main thread.
Java documentation for android.content.Loader.reset()
.
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.