Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道如何为图像进行共享元素转换。有没有办法我们可以做 gif 共享元素转换?当我们点击一个gif时,它会弹出一个全屏视图。或者我们可以暂停 gif,然后进行共享元素转换?
任何帮助,将不胜感激。谢谢。
您可以轻松地暂停动画:
Animatable animatable = mSimpleDraweeView.getController().getAnimatable(); if (animatable != null) { animatable.stop(); }
然后稍后你就可以过渡了。请注意,Fresco 需要使用 ChangeBounds 过渡;您不能使用 ChangeImageTransform 过渡。