Lines Matching defs:wallpaper

17 package android.service.wallpaper;
63 * A wallpaper service is responsible for showing a live wallpaper behind
66 * {@link Engine} as needed. Implementing a wallpaper thus
80 "android.service.wallpaper.WallpaperService";
85 * a <code>&lt;{@link android.R.styleable#Wallpaper wallpaper}&gt;</code>
88 public static final String SERVICE_META_DATA = "android.service.wallpaper";
118 * The actual implementation of a wallpaper. A wallpaper service may
119 * have multiple instances running (for example as a real wallpaper
273 if (DEBUG) Log.v(TAG, "Dispatch wallpaper offsets: " + x + ", " + y);
292 if (DEBUG) Log.v(TAG, "Dispatch wallpaper command: " + x + ", " + y);
308 * Provides access to the surface in which this wallpaper is drawn.
317 * that the system would like this wallpaper to run in.
326 * that the system would like this wallpaper to run in.
333 * Return whether the wallpaper is currently visible to the user,
344 * wallpaper.
351 * Control whether this wallpaper will receive raw touch events
353 * that is currently displaying the wallpaper. By default they
367 * Control whether this wallpaper will receive notifications when the wallpaper
372 * @param enabled whether the wallpaper wants to receive offset notifications
401 * Called to inform you of the wallpaper becoming visible or
402 * hidden. <em>It is very important that a wallpaper only use
410 * window that is currently showing this wallpaper. Note that the
419 * Called to inform you of the wallpaper's offsets changing
430 * Process a command that was sent to the wallpaper with
453 * the wallpaper.
597 Log.w(TAG, "Failed to add window while updating wallpaper surface.");
698 // This wallpaper is currently invisible, but its
1101 * image wallpaper (which runs in the system process and doesn't want
1112 * Must be implemented to return a new instance of the wallpaper's engine.
1114 * when the wallpaper is currently set as the active wallpaper and the user
1115 * is in the wallpaper picker viewing a preview of it as well.
1121 out.print("State of wallpaper "); out.print(this); out.println(":");