Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there any useful Android Animation Tutorial for beginners? [closed]

Is there any good android animation tutorials to do in views or the transitions? A complete tutorial or guide may help alot.

like image 283
aman.nepid Avatar asked Sep 01 '12 17:09

aman.nepid


People also ask

Can you animate in Android?

Animate between activitiesOn Android 5.0 (API level 21) and higher, you can also create animations that transition between your activities. This is based on the same transition framework described above to animate layout changes, but it allows you to create animations between layouts in separate activities.

How many types of animation are there in Android?

The animations are basically of three types as follows: Property Animation. View Animation. Drawable Animation.


1 Answers

There are basically two type of animations:

  • View Animation:

    With View Animation you can perform a series of simple transformations (position, size, rotation, and transparency) on the contents of a View object

  • Drawable Animation:

    Drawable animation lets you load a series of Drawable resources one after another to create an animation. This is a traditional animation in the sense that it is created with a sequence of different images, played in order, like a roll of film

The above two links have enough examples to get you started.

like image 51
iTurki Avatar answered Sep 19 '22 06:09

iTurki