Android ListView Animations
Just found a library ListViewAnimations which delivers nice animations for list items in Android.
To start an animation programatically, we may consider something like:
To start an animation programatically, we may consider something like:
v.clearAnimation();
Animation animation = AnimationUtils.loadAnimation(getActivity(), R.anim.slide_top_to_bottom);
v.startAnimation(animation);
Comments
Post a Comment