Is there a way to add an animated object in the background of the home screen on Android? For example, an icon that would move in the background, without creating a livewallpaper to contain this special icon?
Asked
Active
Viewed 595 times
3 Answers
1
In general "no". Icon cannot move by itself. Only wallpaper as you need to provide code to do the animation.

Marcin Orlowski
- 72,056
- 11
- 123
- 141
1
Yes, you can create a home screen widget, however it is not recommended. From CommonsWare:
Do not animate app widgets, unless you write you own home screen app.
More on this topic can be found on: Is there a way to animate on a Home Widget?
-
Thanks. What does it mean: "your own home screen app" ? Does it mean a live wallpaper? – Paul Jan 09 '14 at 16:06
-
@Paul, no - you can create an app that replaces the default home screen. This means it organizes the layout of the icons, widgets, and controls the user sees and interacts with. See http://stackoverflow.com/questions/3666771/how-can-i-create-a-custom-home-screen-replacement-application-for-android – Phil Jan 09 '14 at 16:08