Search code examples
androidandroid-animationsplash-screenanimated-gif

How to create Motion Splash Screen in Android?


I saw a link that is designed by designer for mobile application. i want to achieve this kind of effect or animation i don't know what to say exactly.

Please guide me how can i achieve exact same effect in android application splash screen.

Do i need gif image of that and display in webview ?

or any kind of drawable-animation ?

Any kind of suggestions and help will be appreciable.

Thanks in Advance.


Solution

  • You can use AnimatorSet

    This class plays a set of Animator objects in the specified order. Animations can be set up to play together, in sequence, or after a specified delay.

    There are two different approaches to adding animations to a AnimatorSet: either the playTogether() or playSequentially() methods can be called to add a set of animations all at once, or the play(Animator) can be used in conjunction with methods in the Builder class to add animations one by one.

    It is possible to set up a AnimatorSet with circular dependencies between its animations. For example, an animation a1 could be set up to start before animation a2, a2 before a3, and a3 before a1. The results of this configuration are undefined, but will typically result in none of the affected animations being played. Because of this (and because circular dependencies do not make logical sense anyway), circular dependencies should be avoided, and the dependency flow of animations should only be in one direction.

    You can check Below link for demp case

    1. Digest Splash for Android