Example usage for android.view.animation AlphaAnimation start

List of usage examples for android.view.animation AlphaAnimation start

Introduction

In this page you can find the example usage for android.view.animation AlphaAnimation start.

Prototype

public void start() 

Source Link

Document

Convenience method to start the animation the first time #getTransformation(long,Transformation) is invoked.

Usage

From source file:keyboard.ecloga.com.eclogakeyboard.EclogaKeyboard.java

private void alphaAnimation() {
    AlphaAnimation transparency = new AlphaAnimation(1, (float) 0.75);
    transparency.setDuration(200);//  w  w  w  . j ava2 s. c o  m
    transparency.start();
    //view.startAnimation(transparency);
}