Background
In the past, Google presented the Fragments classes (which I've also asked when should we use it, here).
Now, Android 4.4 has a new framework class called "Scene".
According to what I've read (and watched on lectures, for example here), it's supposed to help you with animations and transitions between states.
The question
Actually I have a few questions about this:
In which cases would I know when to use it? Is it just for animations and considered a "bonus" to your app? Or does it also present some logic like Fragments and Activities?
What is the difference between using it and just animating each view you'd like to animate?
Are there any official samples for this?
Is there any compatibility library, to use it on pre-4.4 versions?