Re: [android-developers] Re: need reference page for how to write a png from res/drawable to background as wallpaper

2011-05-20 Thread Saurav
I am guessing this is what u want, WallpaperManager manager = WallpaperManager.getInstance(this); try { manager.setResource(R.drawable.wallpaper); } catch (IOException e) { e.printStackTrace(); } U need to add SET_WALLPAPER permissions in ur manifest file. Hope this helps. Regards, Saurav

[android-developers] Re: need reference page for how to write a png from res/drawable to background as wallpaper

2011-05-20 Thread Spooky
On May 20, 1:04 am, Saurav to.saurav.mukher...@gmail.com wrote: Hope this helps. Looks like exactly what I need. Thanks! I also have something far more likely to get better search results (for a reference page), too---so thanks for that, as well! Later, --jim -- You received this

[android-developers] Re: need reference page for how to write a png from res/drawable to background as wallpaper

2011-05-19 Thread Spooky
On May 19, 11:25 pm, Saurav to.saurav.mukher...@gmail.com wrote: You mean wallpaper for phone home screen? Ok, here's a chance for me to possibly clear up my own confusion. I've been under the impressions that A) the home screen is THE screen that you get when you press the HOME button, and that