EAGLE
EAGLE

Reputation: 596

Tween Animation and Frame by Frame Animation in Android

What is Tween Animation and Frame by Frame Animation in Android?

Upvotes: 4

Views: 4097

Answers (2)

user2441810
user2441810

Reputation:

Tween Animation: An animation that performs transitions such as rotating, fading, moving, and stretching on a graphic.

Frame by Frame Animation: An animation that shows a sequence of images in order (like a film).

Upvotes: 2

user1639837
user1639837

Reputation:

A tween animation can perform a series of simple transformations like

    position, size, rotation, and transparency 

on the contents of a View object. So, if you have a TextView or ImageView object, you can move, rotate, grow, or shrink the text or image.

     While frame by frame animation do it on a set of images.

Upvotes: 3

Related Questions