|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectandroid.support.v4.content.Loader<D>
public class Loader<D>
Static library support version of the framework's Loader
.
Used to write apps that run on platforms prior to Android 3.0. When running
on Android 3.0 or above, this implementation is still used; it does not try
to switch to the framework's implementation. See the framework SDK
documentation for a class overview.
Nested Class Summary | |
---|---|
class |
Loader.ForceLoadContentObserver
An implementation of a ContentObserver that takes care of connecting it to the Loader to have the loader re-load its data when the observer is told it has changed. |
static interface |
Loader.OnLoadCompleteListener<D>
Interface that is implemented to discover when a Loader has finished loading its data. |
Constructor Summary | |
---|---|
Loader(android.content.Context context)
Stores away the application context associated with context. |
Method Summary | |
---|---|
void |
abandon()
Tell the Loader that it is being abandoned. |
String |
dataToString(D data)
For debugging, converts an instance of the Loader's data class to a string that can be printed. |
void |
deliverResult(D data)
Sends the result of the load to the registered listener. |
void |
dump(String prefix,
FileDescriptor fd,
PrintWriter writer,
String[] args)
Print the Loader's state into the given stream. |
void |
forceLoad()
Force an asynchronous load. |
android.content.Context |
getContext()
|
int |
getId()
|
boolean |
isAbandoned()
Return whether this loader has been abandoned. |
boolean |
isReset()
Return whether this load has been reset. |
boolean |
isStarted()
Return whether this load has been started. |
protected void |
onAbandon()
Subclasses implement this to take care of being abandoned. |
void |
onContentChanged()
Called when Loader.ForceLoadContentObserver detects a change. |
protected void |
onForceLoad()
Subclasses must implement this to take care of requests to forceLoad() . |
protected void |
onReset()
Subclasses must implement this to take care of resetting their loader, as per reset() . |
protected void |
onStartLoading()
Subclasses must implement this to take care of loading their data, as per startLoading() . |
protected void |
onStopLoading()
Subclasses must implement this to take care of stopping their loader, as per stopLoading() . |
void |
registerListener(int id,
Loader.OnLoadCompleteListener<D> listener)
Registers a class that will receive callbacks when a load is complete. |
void |
reset()
Resets the state of the Loader. |
void |
startLoading()
Starts an asynchronous load of the Loader's data. |
void |
stopLoading()
Stops delivery of updates until the next time startLoading() is called. |
boolean |
takeContentChanged()
Take the current flag indicating whether the loader's content had changed while it was stopped. |
String |
toString()
|
void |
unregisterListener(Loader.OnLoadCompleteListener<D> listener)
Remove a listener that was previously added with registerListener(int, android.support.v4.content.Loader.OnLoadCompleteListener . |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public Loader(android.content.Context context)
context
- used to retrieve the application context.Method Detail |
---|
public void deliverResult(D data)
data
- the result of the loadpublic android.content.Context getContext()
public int getId()
public void registerListener(int id, Loader.OnLoadCompleteListener<D> listener)
Must be called from the process's main thread.
public void unregisterListener(Loader.OnLoadCompleteListener<D> listener)
registerListener(int, android.support.v4.content.Loader.OnLoadCompleteListener)
.
Must be called from the process's main thread.
public boolean isStarted()
startLoading()
has been called and no calls to stopLoading()
or
reset()
have yet been made.
public boolean isAbandoned()
public boolean isReset()
reset()
has been called.
public final void startLoading()
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.
protected void onStartLoading()
startLoading()
. This is not called by clients directly,
but as a result of a call to startLoading()
.
public void forceLoad()
startLoading()
this will ignore a previously
loaded data set and load a new one. This simply calls through to the
implementation's onForceLoad()
. You generally should only call this
when the loader is started -- that is, isStarted()
returns true.
Must be called from the process's main thread.
protected void onForceLoad()
forceLoad()
.
This will always be called from the process's main thread.
public void stopLoading()
startLoading()
is called.
Implementations should not invalidate their data at this point --
clients are still free to use the last data the loader reported. They will,
however, typically stop reporting new data if the data changes; they can
still monitor for changes, but must not report them to the client until and
if startLoading()
is later called.
This updates the Loader's internal state so that
isStarted()
will return the correct
value, and then calls the implementation's onStopLoading()
.
Must be called from the process's main thread.
protected void onStopLoading()
stopLoading()
. This is not called by clients directly,
but as a result of a call to stopLoading()
.
This will always be called from the process's main thread.
public void abandon()
reset()
to have it retain its current data but not report
any new data.
protected void onAbandon()
onReset()
-- it means that
the client is no longer interested in any new data from the loader,
so the loader must not report any further updates. However, the
loader must keep its last reported data valid until the final
onReset()
happens. You can retrieve the current abandoned
state with isAbandoned()
.
public void reset()
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.
protected void onReset()
reset()
. This is not called by clients directly,
but as a result of a call to reset()
.
This will always be called from the process's main thread.
public boolean takeContentChanged()
public void onContentChanged()
Loader.ForceLoadContentObserver
detects a change. The
default implementation checks to see if the loader is currently started;
if so, it simply calls forceLoad()
; otherwise, it sets a flag
so that takeContentChanged()
returns true.
Must be called from the process's main thread.
public String dataToString(D data)
public String toString()
toString
in class Object
public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args)
prefix
- Text to print at the front of each line.fd
- The raw file descriptor that the dump is being sent to.writer
- A PrintWriter to which the dump is to be set.args
- Additional arguments to the dump request.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |