List of usage examples for android.view.animation AlphaAnimation start
public void start()
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); }