Loader.StartLoading Method

Definition

This function will normally be called for you automatically by android.app.LoaderManager when the associated fragment/activity is being started.

[Android.Runtime.Register("startLoading", "()V", "")]
public void StartLoading ();
[<Android.Runtime.Register("startLoading", "()V", "")>]
member this.StartLoading : unit -> unit
Attributes

Remarks

This function will normally be called for you automatically by android.app.LoaderManager when the associated fragment/activity is being started. 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.

Starts an asynchronous load of the Loader's data. When the result is ready the callbacks will be called on the process's main thread. If a previous load has been completed and is still valid the result may be passed to the callbacks immediately. The loader will monitor the source of the data set and may deliver future callbacks if the source changes. Calling #stopLoading will stop the delivery of callbacks.

This updates the Loader's internal state so that #isStarted() and #isReset() will return the correct values, and then calls the implementation's #onStartLoading().

Must be called from the process's main thread.

Java documentation for android.content.Loader.startLoading().

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.

Applies to