在Android中使用手指滚动速度动画对象

时间:2017-05-12 11:18:56

标签: android animation scrollview android-animation

我正在尝试使用ImageView个对象创建动画,其中对象相对于触摸动作改变其位置。

例如:请参阅此behance链接:https://www.behance.net/gallery/32233691/ELEVATE-Onboarding

我可以创建翻译动画但是他们有一个必须由我改变的时间设置。

  1. 如何设置触摸动作的时间。
  2. 我尝试过的事情: 1.我正在尝试使用共享Transition Element的Android ViewPager。 该网址上提供了该代码:https://medium.com/@BashaChris/the-android-viewpager-has-become-a-fairly-popular-component-among-android-apps-its-simple-6bca403b16d4

1 个答案:

答案 0 :(得分:2)

您可以通过导入以下包

来执行此操作
import com.github.florent37.viewanimator.ViewAnimator;

然后添加以下代码。

ViewAnimator
             .animate(YourImageView,text)
             .rotation(360)
             .scale(0,1)
             .start();

您可以使用自定义动画