I am using Android SDK 1.6. Can someone tell me how to set the image as wallpaper on the desktop.
getApplicationContext().setWallpaper();
doesn't seem to work for me.
You need to add SET_WALLPAPER permission on AndroidManifest.xml
SET_WALLPAPER
AndroidManifest.xml
<manifest xlmns:android...> ... <uses-permission android:name="android.permission.SET_WALLPAPER" /> </manifest>