In this exercise, a picture (packed inside our app) will be set as system wallpaper, using WallpaperManager.
* Please note that in order to use WallpaperManager, minimum API level have to be set to 5.


First of all, prepare a picture (wallpaper.png in my case) and save it in /res/drawable/ folder of your project.
main code
main.xml
Finally, you have to modify AndroidManifest.xml to grant permission of "android.permission.SET_WALLPAPER".
Download the files.
Updated@2016-03-03:
Load photo and set Wallpaper
* Please note that in order to use WallpaperManager, minimum API level have to be set to 5.


First of all, prepare a picture (wallpaper.png in my case) and save it in /res/drawable/ folder of your project.
main code
package com.exercise.AndroidWallpaper;
import java.io.IOException;
import android.app.Activity;
import android.app.WallpaperManager;
import android.graphics.Bitmap;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.ImageView;
public class AndroidWallpaper extends Activity {
Bitmap bitmap;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
Button buttonSetWallpaper = (Button)findViewById(R.id.set);
ImageView imagePreview = (ImageView)findViewById(R.id.preview);
imagePreview.setImageResource(R.drawable.wallpaper);
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.wallpaper);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}});
}
}main.xml
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello"
/>
android:id="@+id/set"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Set Wallpaper"
/>
android:id="@+id/preview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
/>
Finally, you have to modify AndroidManifest.xml to grant permission of "android.permission.SET_WALLPAPER".
package="com.exercise.AndroidWallpaper"
android:versionCode="1"
android:versionName="1.0">
android:label="@string/app_name">
Updated@2016-03-03:
Load photo and set Wallpaper