Home | History | Annotate | Download | only in view

Lines Matching refs:Animation

21 import android.view.animation.AlphaAnimation;
22 import android.view.animation.Animation;
23 import android.view.animation.AnimationSet;
24 import android.view.animation.LayoutAnimationController;
25 import android.view.animation.TranslateAnimation;
39 Animation animation = new AlphaAnimation(0.0f, 1.0f);
40 animation.setDuration(50);
41 set.addAnimation(animation);
43 animation = new TranslateAnimation(
44 Animation.RELATIVE_TO_SELF, 0.0f,Animation.RELATIVE_TO_SELF, 0.0f,
45 Animation.RELATIVE_TO_SELF, -1.0f,Animation.RELATIVE_TO_SELF, 0.0f
47 animation.setDuration(100);
48 set.addAnimation(animation);