View抖动效果

/**

* 抖动特效

* ViewPropertyAnimator3.1后才出现

*/

if(Build.VERSION.SDK_INT >11)

ViewPropertyAnimator.animate(categoryView)

.translationX(20)

.setInterpolator(new CycleInterpolator(4))

.setDuration(500)

.start();

categoryView是目标view

你可能感兴趣的:(View抖动效果)