facebookarchive / Keyframes

A library for converting Adobe AE shape based animations to a data format and playing it back on Android and iOS devices.
https://facebookincubator.github.io/Keyframes/
Other
5.34k stars 302 forks source link

[Android] - Support size change? #119

Open dbof10 opened 7 years ago

dbof10 commented 7 years ago

I scale down a View but the KeyframesDrawable is cropped. How to change KeyframesDrawable size according to its View size change?

lozzle commented 7 years ago

Hi @dbof10! What are you using to scale down the size of the view? I'd assume View scaling causes a matrix to be applied to the canvas, which results in all subsequent draws to be scaled down, but it's possible there's a bug in how the custom KeyframesDrawable is handling this that we could look into.

dbof10 commented 7 years ago

I scale View down by using ObjectAnimator e.g ObjectAnimator.ofFloat(View,View.SCALE_X,1.5F)