All Downloads are FREE. Search and download functionalities are using the official Maven repository.

android.app.LoaderManager Maven / Gradle / Ivy

Go to download

A library jar that provides APIs for Applications written for the Google Android Platform.

The newest version!
package android.app;
public abstract class LoaderManager
{
public static interface LoaderCallbacks
{
public abstract  android.content.Loader onCreateLoader(int id, android.os.Bundle args);
public abstract  void onLoadFinished(android.content.Loader loader, D data);
public abstract  void onLoaderReset(android.content.Loader loader);
}
public  LoaderManager() { throw new RuntimeException("Stub!"); }
public abstract  android.content.Loader initLoader(int id, android.os.Bundle args, android.app.LoaderManager.LoaderCallbacks callback);
public abstract  android.content.Loader restartLoader(int id, android.os.Bundle args, android.app.LoaderManager.LoaderCallbacks callback);
public abstract  void destroyLoader(int id);
public abstract  android.content.Loader getLoader(int id);
public abstract  void dump(java.lang.String prefix, java.io.FileDescriptor fd, java.io.PrintWriter writer, java.lang.String[] args);
public static  void enableDebugLogging(boolean enabled) { throw new RuntimeException("Stub!"); }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy