gpt4 book ai didi

android - 在 Android < API 级别 11 中旋转 ImageView

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:44:46 27 4
gpt4 key购买 nike

因此,在 API 级别 11 中,Google 引入了旋转 ImageView 的功能(是的,在他们引入了动画这种旋转的可能性之后,是的聪明的想法,是的!)

但是我应该如何使用例如旋转 ImageView API 级别 8?我不能如上所述使用 setRotation()。

最佳答案

RotationAnimation自 API 级别 1 以来就存在

RotateAnimation animation = new RotateAnimation(from, to,
Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 0.5f);
animation.setInterpolator(new LinearInterpolator());
animation.setDuration(1);
animation.setFillAfter(true);

imageView.startAnimation(animation );

关于android - 在 Android < API 级别 11 中旋转 ImageView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7634540/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com