Reputation: 357
I m developing an Android chat application where in user will be provided with a set of wallpapers from which he/she can set wallpaper of application window.It is changing wallpaper.How it can be done through code? please help. I don't want code for system/home screen wallpaper setting.Wanted for chat screen wallpaper changing code
Upvotes: 0
Views: 663
Reputation: 1617
Simply use setBackgroundDrawable(Drawable d)
in your main activity that is showing the chat window.
Upvotes: 3