Lukap
Lukap

Reputation: 31973

Change Home Wallpaper

I have a application that have a lot of images, and I want to programmatically do a random chanegs of images on my phone backgroind. Is it possible to change wallpaper on android ?

Upvotes: 1

Views: 733

Answers (1)

nhaarman
nhaarman

Reputation: 100468

Use a WallpaperManager.

Also, you'll have to include this permission:

 <uses-permission android:name="android.permission.SET_WALLPAPER" />

Upvotes: 6

Related Questions