美文网首页
View抖动效果

View抖动效果

作者: 点石成金XIAS | 来源:发表于2018-01-05 10:38 被阅读0次

    /**

    * 抖动特效

    * ViewPropertyAnimator3.1后才出现

    */

    if(Build.VERSION.SDK_INT >11)

    ViewPropertyAnimator.animate(categoryView)

    .translationX(20)

    .setInterpolator(new CycleInterpolator(4))

    .setDuration(500)

    .start();

    categoryView是目标view

    相关文章

      网友评论

          本文标题:View抖动效果

          本文链接:https://www.haomeiwen.com/subject/mepjnxtx.html