What better way to make animations for android?

3

I'm about to start a system for android that has several animations that interact according to what the user does, would like to know which is the best tool or framework to be able to develop these animations for android?

Some examples of interaction are as follows:

  • There is a character in the system, as if it were a mascot, where he can speak, in case a balloon with speech according to the interaction appears, this mascot can walk.
  • In the background there is an elevator, where the doors of this elevator can open and close, the lights turn on or off, but all cheering.
  • Another function is to move and resize objects on the screen, example start with an empty room, and I can add a frame and move that frame to where I want it to be in the room, and increase and decrease that frame.
asked by anonymous 13.05.2014 / 12:56

1 answer

1

I believe the best library for working animations on Android is the Nineold . It implements the animations based on the ValueAnimators that were introduced in Android 4.0.

But from what you've described about your project, it might be worth looking at some game engines for Android. Maybe make your life easier. For this, I recommend AndEngine or the Cocos2d .

    
13.05.2014 / 15:10