Android.Content.Loader Members

The members of Android.Content.Loader are listed below.

See Also: Inherited members from Java.Lang.Object

Public Constructors

Stores away the application context associated with context.

Protected Constructors

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

Public Properties

[read-only]
ContextContext.
[read-only]
Idint.
[read-only]
IsAbandonedbool. Return whether this loader has been abandoned.
[read-only]
IsResetbool. Return whether this load has been reset.
[read-only]
IsStartedbool. Return whether this load has been started.

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

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.