Android Objectanimator Expand/collapse From Top To Bottom Animation?
I've been trying different approaches to get the expand/collapse animation with object animator but none of them so far worked. I have used this solution and it works, but when I
Solution 1:
Trying using an ObjectAnimator.ofInt
and use the property name of bottom
. That will animate starting on the bottom of the view. TranslationY corresponds to the top of the view.
Post a Comment for "Android Objectanimator Expand/collapse From Top To Bottom Animation?"