I am trying to create an animation using photos and videos to tell a story on an Android tablet above ICS. The storyboard is visually rich and animating similar to the video here.
What is the best way to do something like that. I have done some search and found that on Android we have
- OpenGL ES 2.0, Do everything at the primitive level.
- Renderscript, To offload computation intensive task for the native code but yet portable
- ViewProperty Animator, Easier animation on any property on any view.
What is the best choice to go with for my case. Any help would be appreciated. For inspiration, I am looking for app links which does a similar thing. I am also looking for any library to work on top of OpenGL which can help me reach there at the earliest and for a better maintainable code.