QuickSand图片点击后分裂成几份消失效果,适合做图片退出和剪切效果。同时也可以学习android动画。
demo中都封装好几个功能类,主要动画实现靠ViewPropertyAnimator,
下面几种设置动画:
ViewPropertyAnimator animateText = findViewById(R.id.simple_anim_text)
.animate()
.setDuration(5000)
.scaleXBy(.5f);
Quicksand.trap(KEY_SIMPLE_ANIMATE_TEXT, animateText);
原文地址:http://10716910.blog.51cto.com/10706910/1707204