I have an app which basically loads a URL. The page on this URL has a few buttons to control few things.
Now, I want to make a Live Wallpaper app which will set my app as the live wallpaper. Is it possible to do so?
If it is not possible, then can I open the required URL when I try to set Live Wallpaper?
So, ultimately, I want to set my app as the Live Wallpaper. This will need me to open the URL and set the opened page as the live wallpaper.
Thank.
Sagar.
You can respond to touch events in the live wallpaper (http://stackoverflow.com/questions/4298458/android-live-wallpaper-touch-event-hierarchy) and so you could recreate your app UI in the wallpaper, and respond to the touch events on the buttons manually (by comparing the location of the tap with the boundaries of the button images and responding if a button is “pressed”).