我正在尝试使用ImageView
个对象创建动画,其中对象相对于触摸动作改变其位置。
例如:请参阅此behance链接:https://www.behance.net/gallery/32233691/ELEVATE-Onboarding
我可以创建翻译动画但是他们有一个必须由我改变的时间设置。
我尝试过的事情: 1.我正在尝试使用共享Transition Element的Android ViewPager。 该网址上提供了该代码:https://medium.com/@BashaChris/the-android-viewpager-has-become-a-fairly-popular-component-among-android-apps-its-simple-6bca403b16d4
答案 0 :(得分:2)
您可以通过导入以下包
来执行此操作import com.github.florent37.viewanimator.ViewAnimator;
然后添加以下代码。
ViewAnimator
.animate(YourImageView,text)
.rotation(360)
.scale(0,1)
.start();
您可以使用自定义动画