Skip to content

Latest commit

 

History

History
12 lines (5 loc) · 788 Bytes

File metadata and controls

12 lines (5 loc) · 788 Bytes

#Animations in Android

Android allows us to define several kind of animations; we can define the animations in xml files, or with java code, and have some java code for starting animations and handling events like the animation starting etc. The kinds of animations are:

  • Drawable animations display just a series of images (or Drawables) one after the other
  • Property animations let you animate any of a number of properties of a view, and are the most flexible.
  • View animations are a somewhat older and less flexible version of property animations.