Methods Summary |
---|
protected void | dump(java.io.FileDescriptor fd, java.io.PrintWriter out, java.lang.String[] args)
out.print("State of wallpaper "); out.print(this); out.println(":");
for (int i=0; i<mActiveEngines.size(); i++) {
Engine engine = mActiveEngines.get(i);
out.print(" Engine "); out.print(engine); out.println(":");
engine.dump(" ", fd, out, args);
}
|
public final android.os.IBinder | onBind(android.content.Intent intent)Implement to return the implementation of the internal accessibility
service interface. Subclasses should not override.
return new IWallpaperServiceWrapper(this);
|
public void | onCreate()
super.onCreate();
|
public abstract android.service.wallpaper.WallpaperService$Engine | onCreateEngine()Must be implemented to return a new instance of the wallpaper's engine.
Note that multiple instances may be active at the same time, such as
when the wallpaper is currently set as the active wallpaper and the user
is in the wallpaper picker viewing a preview of it as well.
|
public void | onDestroy()
super.onDestroy();
for (int i=0; i<mActiveEngines.size(); i++) {
mActiveEngines.get(i).detach();
}
mActiveEngines.clear();
|