get ListView Slide In From Left Animator - Android android.widget

Android examples for android.widget:ListView

Description

get ListView Slide In From Left Animator

Demo Code

import android.view.animation.AlphaAnimation;
import android.view.animation.Animation;
import android.view.animation.AnimationSet;
import android.view.animation.LayoutAnimationController;
import android.view.animation.TranslateAnimation;
import android.widget.TextView;

public class Main{

    public static final LayoutAnimationController getListViewSlideInFromLeftAnimator() {
        AnimationSet set = new AnimationSet(true);

        Animation animation = new AlphaAnimation(0.0f, 1.0f);
        animation.setDuration(50);//from   w  ww  .  j a v  a2s  . c  o m
        set.addAnimation(animation);

        animation = new TranslateAnimation(Animation.RELATIVE_TO_SELF,
                -1.0f, Animation.RELATIVE_TO_SELF, 0.0f,
                Animation.RELATIVE_TO_SELF, 0.0f,
                Animation.RELATIVE_TO_SELF, 0.0f);
        animation.setDuration(200);
        set.addAnimation(animation);

        return new LayoutAnimationController(set, 0.4f);
    }

}

Related Tutorials