Searched refs:wallpaper (Results 1 - 13 of 13) sorted by relevance

/frameworks/base/core/java/android/service/wallpaper/
H A DIWallpaperService.aidl17 package android.service.wallpaper;
19 import android.service.wallpaper.IWallpaperConnection;
H A DIWallpaperConnection.aidl17 package android.service.wallpaper;
20 import android.service.wallpaper.IWallpaperEngine;
H A DIWallpaperEngine.aidl17 package android.service.wallpaper;
H A DWallpaperSettingsActivity.java17 package android.service.wallpaper;
25 * a wallpaper. You should derive from this class to allow it to select the
32 * are being used while the wallpaper is in preview mode.
35 = "android.service.wallpaper.PREVIEW_MODE";
H A DWallpaperService.java17 package android.service.wallpaper;
61 * A wallpaper service is responsible for showing a live wallpaper behind
64 * {@link Engine} as needed. Implementing a wallpaper thus
78 "android.service.wallpaper.WallpaperService";
83 * a <code>&lt;{@link android.R.styleable#Wallpaper wallpaper}&gt;</code>
86 public static final String SERVICE_META_DATA = "android.service.wallpaper";
117 * The actual implementation of a wallpaper. A wallpaper service may
118 * have multiple instances running (for example as a real wallpaper
[all...]
/frameworks/base/services/java/com/android/server/
H A DWallpaperManagerService.java58 import android.service.wallpaper.IWallpaperConnection;
59 import android.service.wallpaper.IWallpaperEngine;
60 import android.service.wallpaper.IWallpaperService;
61 import android.service.wallpaper.WallpaperService;
94 * Minimum time between crashes of a wallpaper service for us to consider
95 * restarting it vs. just reverting to the static wallpaper.
98 static final String WALLPAPER = "wallpaper";
109 * Observes the wallpaper for changes and notifies all IWallpaperServiceCallbacks
110 * that the wallpaper has changed. The CREATE is triggered when there is no
111 * wallpaper se
120 WallpaperObserver(WallpaperData wallpaper) argument
222 WallpaperConnection(WallpaperInfo info, WallpaperData wallpaper) argument
380 doPackagesChangedLocked(boolean doit, WallpaperData wallpaper) argument
546 switchWallpaper(WallpaperData wallpaper, IRemoteCallback reply) argument
740 updateWallpaperBitmapLocked(String name, WallpaperData wallpaper) argument
784 bindWallpaperComponentLocked(ComponentName componentName, boolean force, boolean fromUser, WallpaperData wallpaper, IRemoteCallback reply) argument
925 detachWallpaperLocked(WallpaperData wallpaper) argument
953 clearWallpaperComponentLocked(WallpaperData wallpaper) argument
958 attachServiceLocked(WallpaperConnection conn, WallpaperData wallpaper) argument
971 notifyCallbacksLocked(WallpaperData wallpaper) argument
999 saveSettingsLocked(WallpaperData wallpaper) argument
1187 restoreNamedResourceLocked(WallpaperData wallpaper) argument
[all...]
H A DSystemBackupAgent.java38 * Backup agent for various system-managed data, currently just the system wallpaper
46 private static final String WALLPAPER_IMAGE_FILENAME = "wallpaper";
49 // TODO: Will need to change if backing up non-primary user's wallpaper
54 // TODO: Will need to change if backing up non-primary user's wallpaper
65 // We only back up the data under the current "wallpaper" schema with metadata
66 WallpaperManagerService wallpaper = (WallpaperManagerService)ServiceManager.getService(
70 if (wallpaper != null && wallpaper.getName() != null && wallpaper.getName().length() > 0) {
71 // When the wallpaper ha
[all...]
H A DSystemServer.java350 WallpaperManagerService wallpaper = null;
609 wallpaper = new WallpaperManagerService(context);
610 ServiceManager.addService(Context.WALLPAPER_SERVICE, wallpaper);
848 final WallpaperManagerService wallpaperF = wallpaper;
/frameworks/base/core/java/android/app/
H A DWallpaperInfo.java36 import android.service.wallpaper.WallpaperService;
44 * This class is used to specify meta information of a wallpaper service.
50 * The Service that implements this wallpaper component.
55 * The wallpaper setting activity's name, to
56 * launch the setting activity of this wallpaper.
61 * Resource identifier for this wallpaper's thumbnail image.
66 * Resource identifier for a string indicating the author of the wallpaper.
71 * Resource identifier for a string containing a short description of the wallpaper.
78 * @param context The Context in which we are parsing the wallpaper.
80 * this wallpaper'
[all...]
/frameworks/base/services/java/com/android/server/wm/
H A DWindowManagerService.java547 // with the wallpaper.
549 // If non-null, we are in the middle of animating from one wallpaper target
552 // If non-null, we are in the middle of animating from one wallpaper target
560 // This is set when we are waiting for a wallpaper to tell us it is done
563 // The last time we had a timeout when waiting for a wallpaper.
565 // We give a wallpaper up to 150ms to finish scrolling.
654 /** The lowest wallpaper target with a detached wallpaper animation on it. */
755 // For example, when this flag is true, there will be no wallpaper service.
1602 // wallpaper; al
2070 dispatchWallpaperVisibility(final WindowState wallpaper, final boolean visible) argument
[all...]
H A DWindowAnimator.java70 // from the wallpaper. This means we need to ensure the wallpaper is
207 Slog.d(TAG, "Pulling anim wallpaper: target=" + layoutToAnim.mWallpaperTarget
267 // propagated the current layout wallpaper state over into the animation
269 // wallpaper when we had just made it shown because the animation side
270 // doesn't yet see that there is now a wallpaper target. As a temporary
289 final WindowState wallpaper = token.windows.get(j);
290 final WindowStateAnimator winAnimator = wallpaper.mWinAnimator;
293 mService.dispatchWallpaperVisibility(wallpaper, false);
299 "Hiding wallpaper "
[all...]
/frameworks/base/
H A DAndroid.mk149 core/java/android/service/wallpaper/IWallpaperConnection.aidl \
150 core/java/android/service/wallpaper/IWallpaperEngine.aidl \
151 core/java/android/service/wallpaper/IWallpaperService.aidl \
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DImageWallpaper.java32 import android.service.wallpaper.WallpaperService;
54 * Default built-in wallpaper that simply shows a static image.
192 // TODO: Don't need this currently because the wallpaper service
193 // will restart the image wallpaper whenever the image changes.
379 Log.d(TAG, "Redrawing wallpaper");
414 // Note that if we do fail at this, and the default wallpaper can't
416 // default wallpaper can't be loaded.
417 Log.w(TAG, "Unable to load wallpaper!", exception);
422 Log.w(TAG, "Unable reset to default wallpaper!", ex);

Completed in 193 milliseconds