如何为Uber Driver应用程序中的背景视图设置动画

时间:2019-07-13 17:36:43

标签: android android-animation

当驾驶员在按下fab按钮后想要连接时,我一直在尝试实现背景动画,但是我似乎可以复制它。

Alt Text

我尝试找到正确的ValueAnimator属性,但是它不起作用。

    container_button?.setOnClickListener {
          val colorFrom = resources.getColor(R.color.color_blue_light)
          val colorTo = resources.getColor(R.color.color_blue_dark)
          val colorAnimation = ValueAnimator.ofObject(ArgbEvaluator(), colorFrom, colorTo)
          colorAnimation.duration = 700// milliseconds
          colorAnimation.addUpdateListener { animator -> container_status.setBackgroundColor(animator.animatedValue as Int) }
          colorAnimation.start()
    }

0 个答案:

没有答案