Android.Content.Loader: Method Members

The methods of Android.Content.Loader are listed below. For a list of all members, see the Loader Members list.

See Also: Inherited members from Java.Lang.Object

Public Methods

Abandon()
This function will normally be called for you automatically by Android.App.LoaderManager when restarting a Loader.
CancelLoad() : bool
Attempt to cancel the current load task.
CommitContentChanged()
Commit that you have actually fully processed a content change that was returned by Loader.TakeContentChanged.
DataToString(Java.Lang.Object) : string
Documentation for this section has not yet been entered.
DeliverCancellation()
Informs the registered NoType:android/content/Loader$OnLoadCanceledListener;Href=../../../reference/android/content/Loader.OnLoadCanceledListener.html that the load has been canceled.
DeliverResult(Java.Lang.Object)
Documentation for this section has not yet been entered.
Dump(string, Java.IO.FileDescriptor, Java.IO.PrintWriter, string[])
Print the Loader's state into the given stream.
DumpAsync(string, Java.IO.FileDescriptor, Java.IO.PrintWriter, string[]) : System.Threading.Tasks.Task
Documentation for this section has not yet been entered.
ForceLoad()
Force an asynchronous load.
OnContentChanged()
Called when NoType:android/content/Loader$ForceLoadContentObserver;Href=../../../reference/android/content/Loader.ForceLoadContentObserver.html detects a change.
RegisterListener(int, Loader.IOnLoadCompleteListener)
Documentation for this section has not yet been entered.
RegisterOnLoadCanceledListener(Loader.IOnLoadCanceledListener)
Documentation for this section has not yet been entered.
Reset()
This function will normally be called for you automatically by Android.App.LoaderManager when destroying a Loader.
RollbackContentChanged()
Report that you have abandoned the processing of a content change that was returned by Loader.TakeContentChanged and would like to rollback to the state where there is again a pending content change.
StartLoading()
This function will normally be called for you automatically by Android.App.LoaderManager when the associated fragment/activity is being started.
StopLoading()
This function will normally be called for you automatically by Android.App.LoaderManager when the associated fragment/activity is being stopped.
TakeContentChanged() : bool
Take the current flag indicating whether the loader's content had changed while it was stopped.
UnregisterListener(Loader.IOnLoadCompleteListener)
Documentation for this section has not yet been entered.
UnregisterOnLoadCanceledListener(Loader.IOnLoadCanceledListener)
Documentation for this section has not yet been entered.

Protected Methods

OnAbandon()
Subclasses implement this to take care of being abandoned.
OnCancelLoad() : bool
Subclasses must implement this to take care of requests to Loader.CancelLoad.
OnForceLoad()
Subclasses must implement this to take care of requests to Loader.ForceLoad.
OnReset()
Subclasses must implement this to take care of resetting their loader, as per Loader.Reset.
OnStartLoading()
Subclasses must implement this to take care of loading their data, as per Loader.StartLoading.
OnStopLoading()
Subclasses must implement this to take care of stopping their loader, as per Loader.StopLoading.