Example usage for android.view View postOnAnimation

List of usage examples for android.view View postOnAnimation

Introduction

In this page you can find the example usage for android.view View postOnAnimation.

Prototype

public void postOnAnimation(Runnable action) 

Source Link

Document

Causes the Runnable to execute on the next animation time step.

Usage

From source file:Main.java

@TargetApi(16)
private static void postOnAnimationJellyBean(View view, Runnable runnable) {
    view.postOnAnimation(runnable);
}