View抖动效果
2018-01-05 本文已影响0人
点石成金XIAS
/**
* 抖动特效
* ViewPropertyAnimator3.1后才出现
*/
if(Build.VERSION.SDK_INT >11)
ViewPropertyAnimator.animate(categoryView)
.translationX(20)
.setInterpolator(new CycleInterpolator(4))
.setDuration(500)
.start();
categoryView是目标view