Added in API level 5

WallpaperManager

open class WallpaperManager
kotlin.Any
   ↳ android.app.WallpaperManager

Provides access to the system wallpaper. With WallpaperManager, you can get the current wallpaper, get the desired dimensions for the wallpaper, set the wallpaper, and more.

An app can check whether wallpapers are supported for the current user, by calling isWallpaperSupported(), and whether setting of wallpapers is allowed, by calling isSetWallpaperAllowed().

Summary

Nested classes
abstract

Interface definition for a callback to be invoked when colors change on a wallpaper.

Constants
static String

Directly launch live wallpaper preview, allowing the user to immediately confirm to switch to a specific live wallpaper.

static String

Activity Action: Show settings for choosing wallpaper.

static String

Launch an activity for the user to pick the current global live wallpaper.

static String

Command for sendWallpaperCommand: reported by the wallpaper host when the user drops an object into an area of the host.

static String

Command for sendWallpaperCommand: reported by the wallpaper host when the user releases a secondary pointer on an empty area (not performing an action in the host).

static String

Command for sendWallpaperCommand: reported by the wallpaper host when the user taps on an empty area (not performing an action in the host).

static String

Extra in ACTION_CHANGE_LIVE_WALLPAPER that specifies the ComponentName of a live wallpaper that should be shown as a preview, for the user to confirm.

static Int

Flag: set or retrieve the lock-screen-specific wallpaper.

static Int

Flag: set or retrieve the general system wallpaper.

static String

Manifest entry for activities that respond to Intent#ACTION_SET_WALLPAPER which allows them to provide a custom large icon associated with this action.

Public methods
open Unit

Registers a listener to get notified when the wallpaper colors change.

open Unit

Remove any currently set system wallpaper, reverting to the system's built-in wallpaper.

open Unit
clear(which: Int)

Remove one or more currently set wallpapers, reverting to the system default display for each one.

open Unit

Equivalent to clear().

open Unit

Clear the offsets previously associated with this window through setWallpaperOffsets(android.os.IBinder,float,float).

open Unit

Remove all internal references to the last loaded wallpaper.

open Drawable!

Obtain a drawable for the built-in static system wallpaper.

open Drawable!

Obtain a drawable for the specified built-in static system wallpaper.

open Drawable!
getBuiltInDrawable(outWidth: Int, outHeight: Int, scaleToFit: Boolean, horizontalAlignment: Float, verticalAlignment: Float)

Returns a drawable for the system built-in static wallpaper.

open Drawable!
getBuiltInDrawable(outWidth: Int, outHeight: Int, scaleToFit: Boolean, horizontalAlignment: Float, verticalAlignment: Float, which: Int)

Returns a drawable for the built-in static wallpaper of the specified type.

open Intent!

Gets an Intent that will launch an activity that crops the given image and sets the device's wallpaper.

open Int

Returns the desired minimum height for the wallpaper.

open Int

Returns the desired minimum width for the wallpaper.

open Drawable?

Important note:

open Drawable?
getDrawable(which: Int)

Important note: only apps with should use this method.

open Drawable?

Important note:

open Drawable?

Important note: only apps with android.Manifest.permission#MANAGE_EXTERNAL_STORAGE should use this method.

open static WallpaperManager!
getInstance(context: Context!)

Retrieve a WallpaperManager associated with the given Context.

open WallpaperColors?

Get the primary colors of a wallpaper.

open ParcelFileDescriptor?

Important note:


Get an open, readable file descriptor to the given wallpaper image file.

open Int

Get the ID of the current wallpaper of the given kind.

open WallpaperInfo!

Returns the information about the home screen wallpaper if its current wallpaper is a live wallpaper component.

open WallpaperInfo?

Returns the information about the home screen wallpaper if its current wallpaper is a live wallpaper component.

open Boolean

Return whether any users are currently set to use the wallpaper with the given resource ID.

open Boolean

Returns whether the calling package is allowed to set the wallpaper for the calling user.

open Boolean

Returns whether wallpapers are supported for the calling user.

open Drawable?

Important note:

open Drawable?
peekDrawable(which: Int)

Important note: only apps with should use this method.

open Drawable?

Important note: only apps with should use this method.

open Drawable?

Important note: only apps with should use this method.

open Unit

Stop listening to color updates.

open Unit
sendWallpaperCommand(windowToken: IBinder!, action: String!, x: Int, y: Int, z: Int, extras: Bundle!)

Send an arbitrary command to the current active wallpaper.

open Unit
setBitmap(bitmap: Bitmap!)

Change the current system wallpaper to a bitmap.

open Int
setBitmap(fullImage: Bitmap!, visibleCropHint: Rect!, allowBackup: Boolean)

Change the current system wallpaper to a bitmap, specifying a hint about which subrectangle of the full image is to be visible.

open Int
setBitmap(fullImage: Bitmap!, visibleCropHint: Rect!, allowBackup: Boolean, which: Int)

Version of setBitmap(android.graphics.Bitmap,android.graphics.Rect,boolean) that allows the caller to specify which of the supported wallpaper categories to set.

open Unit

Specify extra padding that the wallpaper should have outside of the display.

open Unit
setResource(resid: Int)

Change the current system wallpaper to the bitmap in the given resource.

open Int
setResource(resid: Int, which: Int)

Version of setResource(int) that allows the caller to specify which of the supported wallpaper categories to set.

open Unit
setStream(bitmapData: InputStream!)

Change the current system wallpaper to a specific byte stream.

open Int
setStream(bitmapData: InputStream!, visibleCropHint: Rect!, allowBackup: Boolean)

Change the current system wallpaper to a specific byte stream, specifying a hint about which subrectangle of the full image is to be visible.

open Int
setStream(bitmapData: InputStream!, visibleCropHint: Rect!, allowBackup: Boolean, which: Int)

Version of setStream(java.io.InputStream,android.graphics.Rect,boolean) that allows the caller to specify which of the supported wallpaper categories to set.

open Unit

For applications that use multiple virtual screens showing a wallpaper, specify the step size between virtual screens.

open Unit
setWallpaperOffsets(windowToken: IBinder!, xOffset: Float, yOffset: Float)

Set the display position of the current wallpaper within any larger space, when that wallpaper is visible behind the given window.

open Unit
suggestDesiredDimensions(minimumWidth: Int, minimumHeight: Int)

For use only by the current home application, to specify the size of wallpaper it would like to use.

Constants

ACTION_CHANGE_LIVE_WALLPAPER

Added in API level 16
static val ACTION_CHANGE_LIVE_WALLPAPER: String

Directly launch live wallpaper preview, allowing the user to immediately confirm to switch to a specific live wallpaper. You must specify EXTRA_LIVE_WALLPAPER_COMPONENT with the ComponentName of a live wallpaper component that is to be shown.

Value: "android.service.wallpaper.CHANGE_LIVE_WALLPAPER"

ACTION_CROP_AND_SET_WALLPAPER

Added in API level 19
static val ACTION_CROP_AND_SET_WALLPAPER: String

Activity Action: Show settings for choosing wallpaper. Do not use directly to construct an intent; instead, use getCropAndSetWallpaperIntent.

Input: Intent#getData is the URI of the image to crop and set as wallpaper.

Output: RESULT_OK if user decided to crop/set the wallpaper, RESULT_CANCEL otherwise Activities that support this intent should specify a MIME filter of "image/*"

Value: "android.service.wallpaper.CROP_AND_SET_WALLPAPER"

ACTION_LIVE_WALLPAPER_CHOOSER

Added in API level 7
static val ACTION_LIVE_WALLPAPER_CHOOSER: String

Launch an activity for the user to pick the current global live wallpaper.

Value: "android.service.wallpaper.LIVE_WALLPAPER_CHOOSER"

COMMAND_DROP

Added in API level 7
static val COMMAND_DROP: String

Command for sendWallpaperCommand: reported by the wallpaper host when the user drops an object into an area of the host. The x and y arguments are the location of the drop.

Value: "android.home.drop"

COMMAND_SECONDARY_TAP

Added in API level 11
static val COMMAND_SECONDARY_TAP: String

Command for sendWallpaperCommand: reported by the wallpaper host when the user releases a secondary pointer on an empty area (not performing an action in the host). The x and y arguments are the location of the secondary tap in screen coordinates.

Value: "android.wallpaper.secondaryTap"

COMMAND_TAP

Added in API level 7
static val COMMAND_TAP: String

Command for sendWallpaperCommand: reported by the wallpaper host when the user taps on an empty area (not performing an action in the host). The x and y arguments are the location of the tap in screen coordinates.

Value: "android.wallpaper.tap"

EXTRA_LIVE_WALLPAPER_COMPONENT

Added in API level 16
static val EXTRA_LIVE_WALLPAPER_COMPONENT: String

Extra in ACTION_CHANGE_LIVE_WALLPAPER that specifies the ComponentName of a live wallpaper that should be shown as a preview, for the user to confirm.

Value: "android.service.wallpaper.extra.LIVE_WALLPAPER_COMPONENT"

FLAG_LOCK

Added in API level 24
static val FLAG_LOCK: Int

Flag: set or retrieve the lock-screen-specific wallpaper.

Value: 2

FLAG_SYSTEM

Added in API level 24
static val FLAG_SYSTEM: Int

Flag: set or retrieve the general system wallpaper.

Value: 1

WALLPAPER_PREVIEW_META_DATA

Added in API level 11
static val WALLPAPER_PREVIEW_META_DATA: String

Manifest entry for activities that respond to Intent#ACTION_SET_WALLPAPER which allows them to provide a custom large icon associated with this action.

Value: "android.wallpaper.preview"

Public methods

addOnColorsChangedListener

Added in API level 27
open fun addOnColorsChangedListener(
    listener: WallpaperManager.OnColorsChangedListener,
    handler: Handler
): Unit

Registers a listener to get notified when the wallpaper colors change.

Parameters
listener WallpaperManager.OnColorsChangedListener: A listener to register This value cannot be null.
handler Handler: Where to call it from. Will be called from the main thread if null.

clear

Added in API level 5
open fun clear(): Unit

Remove any currently set system wallpaper, reverting to the system's built-in wallpaper. On success, the intent Intent#ACTION_WALLPAPER_CHANGED is broadcast.

This method requires the caller to hold the permission android.Manifest.permission#SET_WALLPAPER.
Requires android.Manifest.permission#SET_WALLPAPER

Exceptions
java.io.IOException If an error occurs reverting to the built-in wallpaper.

clear

Added in API level 24
open fun clear(which: Int): Unit

Remove one or more currently set wallpapers, reverting to the system default display for each one. On success, the intent Intent#ACTION_WALLPAPER_CHANGED is broadcast.

  • When called with which=FLAG_LOCK, clear the lockscreen wallpaper. The home screen wallpaper will become visible on the lock screen.
  • When called with which=FLAG_SYSTEM, revert the home screen wallpaper to default. The lockscreen wallpaper will be unchanged: if the previous wallpaper was shared between home and lock screen, it will become lock screen only.
  • When called with which=(FLAG_LOCK | FLAG_SYSTEM), put the default wallpaper on both home and lock screen, removing any user defined wallpaper.

Requires android.Manifest.permission#SET_WALLPAPER

Parameters
which Int: A bitwise combination of FLAG_SYSTEM or FLAG_LOCK Value is either 0 or a combination of android.app.WallpaperManager#FLAG_SYSTEM, and android.app.WallpaperManager#FLAG_LOCK
Exceptions
java.io.IOException If an error occurs reverting to the built-in wallpaper.

clearWallpaper

Added in API level 28
open fun clearWallpaper(): Unit

Equivalent to clear().
Requires android.Manifest.permission#SET_WALLPAPER

See Also

clearWallpaperOffsets

Added in API level 5
open fun clearWallpaperOffsets(windowToken: IBinder!): Unit

Clear the offsets previously associated with this window through setWallpaperOffsets(android.os.IBinder,float,float). This reverts the window to its default state, where it does not cause the wallpaper to scroll from whatever its last offsets were.

Parameters
windowToken IBinder!: The window who these offsets should be associated with, as returned by View.getWindowToken().

forgetLoadedWallpaper

Added in API level 14
open fun forgetLoadedWallpaper(): Unit

Remove all internal references to the last loaded wallpaper. Useful for apps that want to reduce memory usage when they only temporarily need to have the wallpaper. After calling, the next request for the wallpaper will require reloading it again from disk.

getBuiltInDrawable

Added in API level 19
open fun getBuiltInDrawable(): Drawable!

Obtain a drawable for the built-in static system wallpaper.

getBuiltInDrawable

Added in API level 24
open fun getBuiltInDrawable(which: Int): Drawable!

Obtain a drawable for the specified built-in static system wallpaper.

Parameters
which Int: The FLAG_* identifier of a valid wallpaper type. Throws IllegalArgumentException if an invalid wallpaper is requested. Value is either 0 or a combination of android.app.WallpaperManager#FLAG_SYSTEM, and android.app.WallpaperManager#FLAG_LOCK
Return
Drawable! A Drawable presenting the specified wallpaper image, or null if no built-in default image for that wallpaper type exists.

getBuiltInDrawable

Added in API level 19
open fun getBuiltInDrawable(
    outWidth: Int,
    outHeight: Int,
    scaleToFit: Boolean,
    horizontalAlignment: Float,
    verticalAlignment: Float
): Drawable!

Returns a drawable for the system built-in static wallpaper. Based on the parameters, the drawable can be cropped and scaled

Parameters
outWidth Int: The height of the returned drawable
scaleToFit Boolean: If true, scale the wallpaper down rather than just cropping it
horizontalAlignment Float: A float value between 0 and 1 specifying where to crop the image; 0 for left-aligned, 0.5 for horizontal center-aligned, and 1 for right-aligned
verticalAlignment Float: A float value between 0 and 1 specifying where to crop the image; 0 for top-aligned, 0.5 for vertical center-aligned, and 1 for bottom-aligned
Return
Drawable! A Drawable presenting the built-in default system wallpaper image, or null if no such default image is defined on this device.

getBuiltInDrawable

Added in API level 24
open fun getBuiltInDrawable(
    outWidth: Int,
    outHeight: Int,
    scaleToFit: Boolean,
    horizontalAlignment: Float,
    verticalAlignment: Float,
    which: Int
): Drawable!

Returns a drawable for the built-in static wallpaper of the specified type. Based on the parameters, the drawable can be cropped and scaled.

Parameters
outWidth Int: The height of the returned drawable
scaleToFit Boolean: If true, scale the wallpaper down rather than just cropping it
horizontalAlignment Float: A float value between 0 and 1 specifying where to crop the image; 0 for left-aligned, 0.5 for horizontal center-aligned, and 1 for right-aligned
verticalAlignment Float: A float value between 0 and 1 specifying where to crop the image; 0 for top-aligned, 0.5 for vertical center-aligned, and 1 for bottom-aligned
which Int: The FLAG_* identifier of a valid wallpaper type. Throws IllegalArgumentException if an invalid wallpaper is requested. Value is either 0 or a combination of android.app.WallpaperManager#FLAG_SYSTEM, and android.app.WallpaperManager#FLAG_LOCK
Return
Drawable! A Drawable presenting the built-in default wallpaper image of the given type, or null if no default image of that type is defined on this device.

getCropAndSetWallpaperIntent

Added in API level 19
open fun getCropAndSetWallpaperIntent(imageUri: Uri!): Intent!

Gets an Intent that will launch an activity that crops the given image and sets the device's wallpaper. If there is a default HOME activity that supports cropping wallpapers, it will be preferred as the default. Use this method instead of directly creating a ACTION_CROP_AND_SET_WALLPAPER intent.

Parameters
imageUri Uri!: The image URI that will be set in the intent. The must be a content URI and its provider must resolve its type to "image/*"
Exceptions
java.lang.IllegalArgumentException if the URI is not a content URI or its MIME type is not "image/*"

getDesiredMinimumHeight

Added in API level 5
open fun getDesiredMinimumHeight(): Int

Returns the desired minimum height for the wallpaper. Callers of setBitmap(android.graphics.Bitmap) or setStream(java.io.InputStream) should check this value beforehand to make sure the supplied wallpaper respects the desired minimum height. If the returned value is <= 0, the caller should use the height of the default display instead.

Return
Int The desired minimum height for the wallpaper. This value should be honored by applications that set the wallpaper but it is not mandatory.

getDesiredMinimumWidth

Added in API level 5
open fun getDesiredMinimumWidth(): Int

Returns the desired minimum width for the wallpaper. Callers of setBitmap(android.graphics.Bitmap) or setStream(java.io.InputStream) should check this value beforehand to make sure the supplied wallpaper respects the desired minimum width. If the returned value is <= 0, the caller should use the width of the default display instead.

Return
Int The desired minimum width for the wallpaper. This value should be honored by applications that set the wallpaper but it is not mandatory.

getDrawable

Added in API level 5
open fun getDrawable(): Drawable?

Important note:

Equivalent to getDrawable(int) with which=FLAG_SYSTEM.


Requires android.Manifest.permission#MANAGE_EXTERNAL_STORAGE or android.Manifest.permission.READ_WALLPAPER_INTERNAL
Return
Drawable? A Drawable object for the requested wallpaper. This value may be null.
Exceptions
java.lang.SecurityException as described in the note

getDrawable

Added in API level 34
open fun getDrawable(which: Int): Drawable?

Important note: only apps with should use this method. Otherwise, a SecurityException will be thrown.

Retrieve the requested wallpaper for the specified wallpaper type if the wallpaper is not a live wallpaper. This method should not be used to display the user wallpaper on an app: android.view.WindowManager.LayoutParams#FLAG_SHOW_WALLPAPER should be used instead.

When called with which=FLAG_SYSTEM, if there is a live wallpaper on home screen, the built-in default wallpaper is returned.

When called with which=FLAG_LOCK, if there is a live wallpaper on lock screen, or if the lock screen and home screen share the same wallpaper engine, null is returned.

getWallpaperInfo(int) can be used to determine whether there is a live wallpaper on a specified screen type.


Requires android.Manifest.permission#MANAGE_EXTERNAL_STORAGE or android.Manifest.permission.READ_WALLPAPER_INTERNAL
Parameters
which Int: The FLAG_* identifier of a valid wallpaper type. Throws IllegalArgumentException if an invalid wallpaper is requested. Value is either 0 or a combination of android.app.WallpaperManager#FLAG_SYSTEM, and android.app.WallpaperManager#FLAG_LOCK
Return
Drawable? A Drawable object for the requested wallpaper.
Exceptions
java.lang.SecurityException as described in the note

getFastDrawable

Added in API level 5
open fun getFastDrawable(): Drawable?

Important note:

Equivalent to getFastDrawable(int) with which=FLAG_SYSTEM.


Requires android.Manifest.permission#MANAGE_EXTERNAL_STORAGE or android.Manifest.permission.READ_WALLPAPER_INTERNAL
Return
Drawable? A Drawable object for the requested wallpaper. This value may be null.
Exceptions
java.lang.SecurityException as described in the note

getFastDrawable

Added in API level 34
open fun getFastDrawable(which: Int): Drawable?

Important note: only apps with android.Manifest.permission#MANAGE_EXTERNAL_STORAGE should use this method. Otherwise, a SecurityException will be thrown. Like getDrawable(int), but the returned Drawable has a number of limitations to reduce its overhead as much as possible. It will never scale the wallpaper (only centering it if the requested bounds do match the bitmap bounds, which should not be typical), doesn't allow setting an alpha, color filter, or other attributes, etc. The bounds of the returned drawable will be initialized to the same bounds as the wallpaper, so normally you will not need to touch it. The drawable also assumes that it will be used in a context running in the same density as the screen (not in density compatibility mode).
Requires android.Manifest.permission#MANAGE_EXTERNAL_STORAGE or android.Manifest.permission.READ_WALLPAPER_INTERNAL

Parameters
which Int: The FLAG_* identifier of a valid wallpaper type. Throws IllegalArgumentException if an invalid wallpaper is requested. Value is either 0 or a combination of android.app.WallpaperManager#FLAG_SYSTEM, and android.app.WallpaperManager#FLAG_LOCK
Return
Drawable? An optimized Drawable object for the requested wallpaper, or null in some cases as specified in getDrawable(int).
Exceptions
java.lang.SecurityException as described in the note

getInstance

Added in API level 5
open static fun getInstance(context: Context!): WallpaperManager!

Retrieve a WallpaperManager associated with the given Context.

getWallpaperColors

Added in API level 27
open fun getWallpaperColors(which: Int): WallpaperColors?

Get the primary colors of a wallpaper.

This method can return null when:

Please note that this API will go through IPC and may take some time to calculate the wallpaper color, which could block the caller thread, so it is not recommended to call this in the UI thread.

Parameters
which Int: Wallpaper type. Must be either FLAG_SYSTEM or FLAG_LOCK.
Return
WallpaperColors? Current WallpaperColors or null if colors are unknown.

getWallpaperFile

Added in API level 24
open fun getWallpaperFile(which: Int): ParcelFileDescriptor?

Important note:


Get an open, readable file descriptor to the given wallpaper image file. The caller is responsible for closing the file descriptor when done ingesting the file.

If no lock-specific wallpaper has been configured for the given user, then this method will return null when requesting FLAG_LOCK rather than returning the system wallpaper's image file.
Requires android.Manifest.permission#MANAGE_EXTERNAL_STORAGE or android.Manifest.permission.READ_WALLPAPER_INTERNAL

Parameters
which Int: The wallpaper whose image file is to be retrieved. Must be a single defined kind of wallpaper, either FLAG_SYSTEM or FLAG_LOCK. Value is either 0 or a combination of android.app.WallpaperManager#FLAG_SYSTEM, and android.app.WallpaperManager#FLAG_LOCK
Return
ParcelFileDescriptor? An open, readable file descriptor to the requested wallpaper image file; or null if no such wallpaper is configured or if the calling app does not have permission to read the current wallpaper.
Exceptions
java.lang.SecurityException as described in the note

getWallpaperId

Added in API level 24
open fun getWallpaperId(which: Int): Int

Get the ID of the current wallpaper of the given kind. If there is no such wallpaper configured, returns a negative number.

Every time the wallpaper image is set, a new ID is assigned to it. This method allows the caller to determine whether the wallpaper imagery has changed, regardless of how that change happened.

Parameters
which Int: The wallpaper whose ID is to be returned. Must be a single defined kind of wallpaper, either FLAG_SYSTEM or FLAG_LOCK. Value is either 0 or a combination of android.app.WallpaperManager#FLAG_SYSTEM, and android.app.WallpaperManager#FLAG_LOCK
Return
Int The positive numeric ID of the current wallpaper of the given kind, or a negative value if no such wallpaper is configured.

getWallpaperInfo

Added in API level 7
open fun getWallpaperInfo(): WallpaperInfo!

Returns the information about the home screen wallpaper if its current wallpaper is a live wallpaper component. Otherwise, if the wallpaper is a static image, this returns null.

In order to use this, apps should declare a <queries> tag with the action "android.service.wallpaper.WallpaperService". Otherwise, this method will return null if the caller doesn't otherwise have visibility of the wallpaper package.

getWallpaperInfo

Added in API level 34
open fun getWallpaperInfo(which: Int): WallpaperInfo?

Returns the information about the home screen wallpaper if its current wallpaper is a live wallpaper component. Otherwise, if the wallpaper is a static image or is not set, or if the the caller doesn't have the appropriate permissions, this returns null.

Before Android U, this method requires the android.Manifest.permission#QUERY_ALL_PACKAGES permission.

Starting from Android U, In order to use this, apps should declare a <queries> tag with the action "android.service.wallpaper.WallpaperService". Otherwise, this method will return null if the caller doesn't otherwise have visibility of the wallpaper package.

Parameters
which Int: Specifies wallpaper to request (home or lock). Value is either 0 or a combination of android.app.WallpaperManager#FLAG_SYSTEM, and android.app.WallpaperManager#FLAG_LOCK
Exceptions
java.lang.IllegalArgumentException if which is not exactly one of {FLAG_SYSTEM,FLAG_LOCK}.

hasResourceWallpaper

Added in API level 17
open fun hasResourceWallpaper(resid: Int): Boolean

Return whether any users are currently set to use the wallpaper with the given resource ID. That is, their wallpaper has been set through setResource(int) with the same resource id.

isSetWallpaperAllowed

Added in API level 24
open fun isSetWallpaperAllowed(): Boolean

Returns whether the calling package is allowed to set the wallpaper for the calling user. If this function returns false, any attempts to change the wallpaper will have no effect. Always returns true for device owner and profile owner.

isWallpaperSupported

Added in API level 23
open fun isWallpaperSupported(): Boolean

Returns whether wallpapers are supported for the calling user. If this function returns false, any attempts to changing the wallpaper will have no effect, and any attempt to obtain of the wallpaper will return null.

peekDrawable

Added in API level 5
open fun peekDrawable(): Drawable?

Important note:

Equivalent to getDrawable().


Requires android.Manifest.permission#MANAGE_EXTERNAL_STORAGE or android.Manifest.permission.READ_WALLPAPER_INTERNAL
Return
Drawable? A Drawable object for the requested wallpaper. This value may be null.
Exceptions
java.lang.SecurityException as described in the note

See Also

peekDrawable

Added in API level 34
open fun peekDrawable(which: Int): Drawable?

Important note: only apps with should use this method. Otherwise, a SecurityException will be thrown.

Equivalent to getDrawable(int).


Requires android.Manifest.permission#MANAGE_EXTERNAL_STORAGE or android.Manifest.permission.READ_WALLPAPER_INTERNAL
Parameters
which Int: The FLAG_* identifier of a valid wallpaper type. Throws IllegalArgumentException if an invalid wallpaper is requested. Value is either 0 or a combination of android.app.WallpaperManager#FLAG_SYSTEM, and android.app.WallpaperManager#FLAG_LOCK
Return
Drawable? A Drawable object for the requested wallpaper. This value may be null.
Exceptions
java.lang.SecurityException as described in the note

peekFastDrawable

Added in API level 5
open fun peekFastDrawable(): Drawable?

Important note: only apps with should use this method. Otherwise, a SecurityException will be thrown.

Equivalent to getFastDrawable().


Requires android.Manifest.permission#MANAGE_EXTERNAL_STORAGE or android.Manifest.permission.READ_WALLPAPER_INTERNAL
Return
Drawable? An optimized Drawable object for the requested wallpaper. This value may be null.
Exceptions
java.lang.SecurityException as described in the note

peekFastDrawable

Added in API level 34
open fun peekFastDrawable(which: Int): Drawable?

Important note: only apps with should use this method. Otherwise, a SecurityException will be thrown.

Equivalent to getFastDrawable(int).


Requires android.Manifest.permission#MANAGE_EXTERNAL_STORAGE or android.Manifest.permission.READ_WALLPAPER_INTERNAL
Parameters
which Int: The FLAG_* identifier of a valid wallpaper type. Throws IllegalArgumentException if an invalid wallpaper is requested. Value is either 0 or a combination of android.app.WallpaperManager#FLAG_SYSTEM, and android.app.WallpaperManager#FLAG_LOCK
Return
Drawable? An optimized Drawable object for the requested wallpaper. This value may be null.
Exceptions
java.lang.SecurityException as described in the note

removeOnColorsChangedListener

Added in API level 27
open fun removeOnColorsChangedListener(callback: WallpaperManager.OnColorsChangedListener): Unit

Stop listening to color updates.

Parameters
callback WallpaperManager.OnColorsChangedListener: A callback to unsubscribe. This value cannot be null.

sendWallpaperCommand

Added in API level 7
open fun sendWallpaperCommand(
    windowToken: IBinder!,
    action: String!,
    x: Int,
    y: Int,
    z: Int,
    extras: Bundle!
): Unit

Send an arbitrary command to the current active wallpaper.

Parameters
windowToken IBinder!: The window who these offsets should be associated with, as returned by View.getWindowToken().
action String!: Name of the command to perform. This must be a scoped name to avoid collisions, such as "com.mycompany.wallpaper.DOIT".
x Int: Arbitrary integer argument based on command.
y Int: Arbitrary integer argument based on command.
z Int: Arbitrary integer argument based on command.
extras Bundle!: Optional additional information for the command, or null.

setBitmap

Added in API level 5
open fun setBitmap(bitmap: Bitmap!): Unit

Change the current system wallpaper to a bitmap. The given bitmap is converted to a PNG and stored as the wallpaper. On success, the intent Intent#ACTION_WALLPAPER_CHANGED is broadcast.

This method is equivalent to calling setBitmap(android.graphics.Bitmap,android.graphics.Rect,boolean) and passing null for the visibleCrop rectangle and true for the allowBackup parameter.

This method requires the caller to hold the permission android.Manifest.permission#SET_WALLPAPER.
Requires android.Manifest.permission#SET_WALLPAPER

Parameters
bitmap Bitmap!: The bitmap to be used as the new system wallpaper.
Exceptions
java.io.IOException If an error occurs when attempting to set the wallpaper to the provided image.

setBitmap

Added in API level 24
open fun setBitmap(
    fullImage: Bitmap!,
    visibleCropHint: Rect!,
    allowBackup: Boolean
): Int

Change the current system wallpaper to a bitmap, specifying a hint about which subrectangle of the full image is to be visible. The OS will then try to best present the given portion of the full image as the static system wallpaper image. On success, the intent Intent#ACTION_WALLPAPER_CHANGED is broadcast.

Passing null as the visibleHint parameter is equivalent to passing (0, 0, fullImage.getWidth(), fullImage.getHeight()).

This method requires the caller to hold the permission android.Manifest.permission#SET_WALLPAPER.
Requires android.Manifest.permission#SET_WALLPAPER

Parameters
fullImage Bitmap!: A bitmap that will supply the wallpaper imagery.
visibleCropHint Rect!: The rectangular subregion of fullImage that should be displayed as wallpaper. Passing null for this parameter means that the full image should be displayed if possible given the image's and device's aspect ratios, etc.
allowBackup Boolean: true if the OS is permitted to back up this wallpaper image for restore to a future device; false otherwise.
Return
Int An integer ID assigned to the newly active wallpaper; or zero on failure.
Exceptions
java.io.IOException If an error occurs when attempting to set the wallpaper to the provided image.
java.lang.IllegalArgumentException If the visibleCropHint rectangle is empty or invalid.

setBitmap

Added in API level 24
open fun setBitmap(
    fullImage: Bitmap!,
    visibleCropHint: Rect!,
    allowBackup: Boolean,
    which: Int
): Int

Version of setBitmap(android.graphics.Bitmap,android.graphics.Rect,boolean) that allows the caller to specify which of the supported wallpaper categories to set.
Requires android.Manifest.permission#SET_WALLPAPER

Parameters
fullImage Bitmap!: A bitmap that will supply the wallpaper imagery.
visibleCropHint Rect!: The rectangular subregion of fullImage that should be displayed as wallpaper. Passing null for this parameter means that the full image should be displayed if possible given the image's and device's aspect ratios, etc.
allowBackup Boolean: true if the OS is permitted to back up this wallpaper image for restore to a future device; false otherwise.
which Int: Flags indicating which wallpaper(s) to configure with the new imagery. Value is either 0 or a combination of android.app.WallpaperManager#FLAG_SYSTEM, and android.app.WallpaperManager#FLAG_LOCK
Return
Int An integer ID assigned to the newly active wallpaper; or zero on failure.
Exceptions
java.io.IOException

setDisplayPadding

Added in API level 28
open fun setDisplayPadding(padding: Rect!): Unit

Specify extra padding that the wallpaper should have outside of the display. That is, the given padding supplies additional pixels the wallpaper should extend outside of the display itself.

This method requires the caller to hold the permission android.Manifest.permission#SET_WALLPAPER_HINTS.
Requires android.Manifest.permission#SET_WALLPAPER_HINTS

Parameters
padding Rect!: The number of pixels the wallpaper should extend beyond the display, on its left, top, right, and bottom sides.

setResource

Added in API level 5
open fun setResource(resid: Int): Unit

Change the current system wallpaper to the bitmap in the given resource. The resource is opened as a raw data stream and copied into the wallpaper; it must be a valid PNG or JPEG image. On success, the intent Intent#ACTION_WALLPAPER_CHANGED is broadcast.

This method requires the caller to hold the permission android.Manifest.permission#SET_WALLPAPER.
Requires android.Manifest.permission#SET_WALLPAPER

Parameters
resid Int: The resource ID of the bitmap to be used as the wallpaper image
Exceptions
java.io.IOException If an error occurs reverting to the built-in wallpaper.

setResource

Added in API level 24
open fun setResource(
    resid: Int,
    which: Int
): Int

Version of setResource(int) that allows the caller to specify which of the supported wallpaper categories to set.
Requires android.Manifest.permission#SET_WALLPAPER

Parameters
resid Int: The resource ID of the bitmap to be used as the wallpaper image
which Int: Flags indicating which wallpaper(s) to configure with the new imagery Value is either 0 or a combination of android.app.WallpaperManager#FLAG_SYSTEM, and android.app.WallpaperManager#FLAG_LOCK
Return
Int An integer ID assigned to the newly active wallpaper; or zero on failure.
Exceptions
java.io.IOException

setStream

Added in API level 5
open fun setStream(bitmapData: InputStream!): Unit

Change the current system wallpaper to a specific byte stream. The give InputStream is copied into persistent storage and will now be used as the wallpaper. Currently it must be either a JPEG or PNG image. On success, the intent Intent#ACTION_WALLPAPER_CHANGED is broadcast.

This method is equivalent to calling setStream(java.io.InputStream,android.graphics.Rect,boolean) and passing null for the visibleCrop rectangle and true for the allowBackup parameter.

This method requires the caller to hold the permission android.Manifest.permission#SET_WALLPAPER.
Requires android.Manifest.permission#SET_WALLPAPER

Parameters
bitmapData InputStream!: A stream containing the raw data to install as a wallpaper. This data can be in any format handled by BitmapRegionDecoder.
Exceptions
java.io.IOException If an error occurs when attempting to set the wallpaper based on the provided image data.

setStream

Added in API level 24
open fun setStream(
    bitmapData: InputStream!,
    visibleCropHint: Rect!,
    allowBackup: Boolean
): Int

Change the current system wallpaper to a specific byte stream, specifying a hint about which subrectangle of the full image is to be visible. The OS will then try to best present the given portion of the full image as the static system wallpaper image. The data from the given InputStream is copied into persistent storage and will then be used as the system wallpaper. Currently the data must be either a JPEG or PNG image. On success, the intent Intent#ACTION_WALLPAPER_CHANGED is broadcast.

This method requires the caller to hold the permission android.Manifest.permission#SET_WALLPAPER.
Requires android.Manifest.permission#SET_WALLPAPER

Parameters
bitmapData InputStream!: A stream containing the raw data to install as a wallpaper. This data can be in any format handled by BitmapRegionDecoder.
visibleCropHint Rect!: The rectangular subregion of the streamed image that should be displayed as wallpaper. Passing null for this parameter means that the full image should be displayed if possible given the image's and device's aspect ratios, etc.
allowBackup Boolean: true if the OS is permitted to back up this wallpaper image for restore to a future device; false otherwise.
Return
Int An integer ID assigned to the newly active wallpaper; or zero on failure.
Exceptions
java.io.IOException If an error occurs when attempting to set the wallpaper based on the provided image data.
java.lang.IllegalArgumentException If the visibleCropHint rectangle is empty or invalid.

setStream

Added in API level 24
open fun setStream(
    bitmapData: InputStream!,
    visibleCropHint: Rect!,
    allowBackup: Boolean,
    which: Int
): Int

Version of setStream(java.io.InputStream,android.graphics.Rect,boolean) that allows the caller to specify which of the supported wallpaper categories to set.
Requires android.Manifest.permission#SET_WALLPAPER

Parameters
bitmapData InputStream!: A stream containing the raw data to install as a wallpaper. This data can be in any format handled by BitmapRegionDecoder.
visibleCropHint Rect!: The rectangular subregion of the streamed image that should be displayed as wallpaper. Passing null for this parameter means that the full image should be displayed if possible given the image's and device's aspect ratios, etc.
allowBackup Boolean: true if the OS is permitted to back up this wallpaper image for restore to a future device; false otherwise.
which Int: Flags indicating which wallpaper(s) to configure with the new imagery. Value is either 0 or a combination of android.app.WallpaperManager#FLAG_SYSTEM, and android.app.WallpaperManager#FLAG_LOCK
Return
Int An integer ID assigned to the newly active wallpaper; or zero on failure.
Exceptions
java.io.IOException

setWallpaperOffsetSteps

Added in API level 7
open fun setWallpaperOffsetSteps(
    xStep: Float,
    yStep: Float
): Unit

For applications that use multiple virtual screens showing a wallpaper, specify the step size between virtual screens. For example, if the launcher has 3 virtual screens, it would specify an xStep of 0.5, since the X offset for those screens are 0.0, 0.5 and 1.0

Parameters
xStep Float: The X offset delta from one screen to the next one
yStep Float: The Y offset delta from one screen to the next one

setWallpaperOffsets

Added in API level 5
open fun setWallpaperOffsets(
    windowToken: IBinder!,
    xOffset: Float,
    yOffset: Float
): Unit

Set the display position of the current wallpaper within any larger space, when that wallpaper is visible behind the given window. The X and Y offsets are floating point numbers ranging from 0 to 1, representing where the wallpaper should be positioned within the screen space. These only make sense when the wallpaper is larger than the display.

Parameters
windowToken IBinder!: The window who these offsets should be associated with, as returned by View.getWindowToken().
xOffset Float: The offset along the X dimension, from 0 to 1.
yOffset Float: The offset along the Y dimension, from 0 to 1.

suggestDesiredDimensions

Added in API level 5
open fun suggestDesiredDimensions(
    minimumWidth: Int,
    minimumHeight: Int
): Unit

For use only by the current home application, to specify the size of wallpaper it would like to use. This allows such applications to have a virtual wallpaper that is larger than the physical screen, matching the size of their workspace.

Calling this method from apps other than the active home app is not guaranteed to work properly. Other apps that supply wallpaper imagery should use getDesiredMinimumWidth() and getDesiredMinimumHeight() and construct a wallpaper that matches those dimensions.

This method requires the caller to hold the permission android.Manifest.permission#SET_WALLPAPER_HINTS.

Parameters
minimumWidth Int: Desired minimum width
minimumHeight Int: Desired minimum height