Example usage for android.view.animation Animation ZORDER_TOP

List of usage examples for android.view.animation Animation ZORDER_TOP

Introduction

In this page you can find the example usage for android.view.animation Animation ZORDER_TOP.

Prototype

int ZORDER_TOP

To view the source code for android.view.animation Animation ZORDER_TOP.

Click Source Link

Document

Requests that the content being animated be forced on top of all other content for the duration of the animation.

Usage

From source file:Main.java

public static Animation inFromBottomToTopAnimation() {
    Animation surfaceGrowingAnimation = new TranslateAnimation(0, 0, 100, Animation.ZORDER_TOP);
    surfaceGrowingAnimation.setDuration(500);
    return surfaceGrowingAnimation;
}