39

I'd like to allow the user to choose a background from a list of images, the user clicks on one of them and that image is used as background for his phone. My app should simply be another version of the android default gallery.

Is it possible to programmatically set the phone's wallpaper?

Phate
  • 6,066
  • 15
  • 73
  • 138

2 Answers2

67

First one, you need to set the permission in your Manifest.xml file

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

And you can set the background with this:

Button buttonSetWallpaper = (Button)findViewById(R.id.set);
ImageView imagePreview = (ImageView)findViewById(R.id.preview);
imagePreview.setImageResource(R.drawable.five);

buttonSetWallpaper.setOnClickListener(new Button.OnClickListener(){
        @Override
        public void onClick(View arg0) {
            // TODO Auto-generated method stub
            WallpaperManager myWallpaperManager 
            = WallpaperManager.getInstance(getApplicationContext());
            try {
                myWallpaperManager.setResource(R.drawable.five);
            } catch (IOException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
}});
Yurets
  • 3,999
  • 17
  • 54
  • 74
Benjamin RD
  • 11,516
  • 14
  • 87
  • 157
13

You can set a wallpaper using the WallpaperManager class. For example:

WallpaperManager wallpaperManager =
        WallpaperManager.getInstance(getApplicationContext());
wallpaperManager.setBitmap(someBitmap);
Lesleh
  • 1,665
  • 15
  • 24