Lines Matching defs:wallpaper

17 package android.service.wallpaper;
71 * A wallpaper service is responsible for showing a live wallpaper behind
74 * {@link Engine} as needed. Implementing a wallpaper thus
88 "android.service.wallpaper.WallpaperService";
93 * a <code>&lt;{@link android.R.styleable#Wallpaper wallpaper}&gt;</code>
96 public static final String SERVICE_META_DATA = "android.service.wallpaper";
131 * The actual implementation of a wallpaper. A wallpaper service may
132 * have multiple instances running (for example as a real wallpaper
339 if (DEBUG) Log.v(TAG, "Dispatch wallpaper offsets: " + x + ", " + y);
359 if (DEBUG) Log.v(TAG, "Dispatch wallpaper command: " + x + ", " + y);
395 * Provides access to the surface in which this wallpaper is drawn.
404 * that the system would like this wallpaper to run in.
413 * that the system would like this wallpaper to run in.
420 * Return whether the wallpaper is currently visible to the user,
431 * wallpaper.
447 * Control whether this wallpaper will receive raw touch events
449 * that is currently displaying the wallpaper. By default they
463 * Control whether this wallpaper will receive notifications when the wallpaper
468 * @param enabled whether the wallpaper wants to receive offset notifications
502 * Called to inform you of the wallpaper becoming visible or
503 * hidden. <em>It is very important that a wallpaper only use
510 * Called with the current insets that are in effect for the wallpaper.
511 * This gives you the part of the overall wallpaper surface that will
521 * window that is currently showing this wallpaper. Note that the
530 * Called to inform you of the wallpaper's offsets changing
541 * Process a command that was sent to the wallpaper with
567 * {@code false} when the screen will blank and the wallpaper should be
576 * the wallpaper.
610 * Notifies the engine that wallpaper colors changed significantly.
632 Log.w(TAG, "Can't notify system because wallpaper connection "
636 Log.w(TAG, "Can't notify system because wallpaper connection was lost.", e);
641 * Called by the system when it needs to know what colors the wallpaper is using.
793 Log.w(TAG, "Failed to add window while updating wallpaper surface.");
957 // This wallpaper is currently invisible, but its
1465 * Must be implemented to return a new instance of the wallpaper's engine.
1467 * when the wallpaper is currently set as the active wallpaper and the user
1468 * is in the wallpaper picker viewing a preview of it as well.
1474 out.print("State of wallpaper "); out.print(this); out.println(":");