I am trying to achieve this with Animator
, instead of Animation
, but I don't know how and I could not find an answer that works around StackOverflow:
<set xmlns:android="http://schemas.android.com/apk/res/android" >
<translate
android:duration="250"
android:fromYDelta="100%"
android:interpolator="@android:anim/decelerate_interpolator"
android:toYDelta="0" />
</set>
Is it possible to make this with Animator
?