This is an Android POC to demonstrate animation effects. These animations make use of the fundamental animation framewoks provided by android like View animations, Property animations etc. You can find the published app on play store named "Animations in Android" at this url "https://play.google.com/store/apps/details?id=com.myapp.ajay.animationsinandroid".
View animations are android's built-in animation effects which are produced by basic view properties like alpha, scale, rotation etc. So basically in this type of animation we are altering a views attributes to produce animation effects.
Property animations are highly customizable animations framework. The concept here is to change the attribute values of a view object in accordance with a range of values either linearly or non-linearly.
Drawable animations is the most basic form of animation. It is just a motion of series of drawable images to create an animation effect.