Stay organized with collections
Save and categorize content based on your preferences.
Loader.OnLoadCanceledListener
public
static
interface
Loader.OnLoadCanceledListener
android.content.Loader.OnLoadCanceledListener<D>
|
This interface was deprecated
in API level 28.
Use Loader.OnLoadCanceledListener
Interface that is implemented to discover when a Loader has been canceled
before it finished loading its data. You do not normally need to implement
this yourself; it is used in the implementation of LoaderManager
to find out when a Loader it is managing has been canceled so that it
can schedule the next Loader. This interface should only be used if a
Loader is not being used in conjunction with LoaderManager.
Summary
Public methods |
abstract
void
|
onLoadCanceled(Loader<D> loader)
Called on the thread that created the Loader when the load is canceled.
|
Public methods
onLoadCanceled
public abstract void onLoadCanceled (Loader<D> loader)
Called on the thread that created the Loader when the load is canceled.
Parameters |
loader |
Loader : the loader that canceled the load |
Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
Last updated 2025-02-10 UTC.
[null,null,["Last updated 2025-02-10 UTC."],[],[],null,["# Loader.OnLoadCanceledListener\n\nAdded in [API level 16](/guide/topics/manifest/uses-sdk-element#ApiLevels) \nDeprecated in [API level\n28](/guide/topics/manifest/uses-sdk-element#ApiLevels) \n\nLoader.OnLoadCanceledListener\n=============================\n\n*** ** * ** ***\n\n[Kotlin](/reference/kotlin/android/content/Loader.OnLoadCanceledListener \"View this page in Kotlin\") \\|Java\n\n\n`\npublic\nstatic\n\n\ninterface\nLoader.OnLoadCanceledListener\n`\n\n\n`\n\n\n`\n\n|----------------------------------------------------|\n| android.content.Loader.OnLoadCanceledListener\\\u003cD\\\u003e |\n\n\u003cbr /\u003e\n\n*** ** * ** ***\n\n\n**This interface was deprecated\nin API level 28.** \n\nUse [Loader.OnLoadCanceledListener](https://developer.android.com/reference/androidx/loader/content/Loader.OnLoadCanceledListener.html)\n\nInterface that is implemented to discover when a Loader has been canceled\nbefore it finished loading its data. You do not normally need to implement\nthis yourself; it is used in the implementation of [LoaderManager](/reference/android/app/LoaderManager)\nto find out when a Loader it is managing has been canceled so that it\ncan schedule the next Loader. This interface should only be used if a\nLoader is not being used in conjunction with LoaderManager.\n\nSummary\n-------\n\n| ### Public methods ||\n|------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| ` abstract void` | ` `[onLoadCanceled](/reference/android/content/Loader.OnLoadCanceledListener#onLoadCanceled(android.content.Loader\u003cD\u003e))`(`[Loader](/reference/android/content/Loader)`\u003cD\u003e loader) ` Called on the thread that created the Loader when the load is canceled. |\n\nPublic methods\n--------------\n\n### onLoadCanceled\n\nAdded in [API level 16](/guide/topics/manifest/uses-sdk-element#ApiLevels) \n\n```\npublic abstract void onLoadCanceled (Loader\u003cD\u003e loader)\n```\n\nCalled on the thread that created the Loader when the load is canceled.\n\n\u003cbr /\u003e\n\n| Parameters ||\n|----------|----------------------------------------------------|\n| `loader` | `Loader`: the loader that canceled the load \u003cbr /\u003e |"]]