How would one go about setting the homescreen wallpaper from an image on the SDcard?
i.e.:
try { wallpaperManager.setResource(\"/sdcard/wallpape
Bitmap o = BitmapFactory.decodeFile("/sdcard/wallpapers/olive.jpg"); try { wallpaperManager.setBitmap(o); finish(); } catch (IOException e) { e.printStackTrace(); }