Android 中旋转ImageView < API 级别 11
因此,在 API Level 11 中,Google 引入了旋转 ImageView 的功能(是的,在他们引入了对此类旋转进行动画处理的可能性之后,是的,聪明的思维,是的!)
但是我应该如何使用例如 API 级别 8 来旋转 ImageView 呢?我无法如上所述使用 setRotation() 。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
RotationAnimation 自 Api 级别 1 起就存在
RotationAnimation was present since Api level 1
我开始创建位图并旋转画布/矩阵,但这不是一个好的解决方案。最后,如果满足条件,则仅交换可绘制对象。我应该说这是一个 ExpandableListView,其中在绘制时重复使用单元格。
我通常不是 Android 开发人员,但我真的很惊讶可以为旋转设置动画,但不能静态设置可绘制对象的旋转。从逻辑上讲,第一个是第二个的子集,而不是相反。
I started with creating BitMap and rotating the canvas/matrix, however this was not a good solution. Finally ended up just swapping the drawable if conditions are met. I should say this is an ExpandableListView where cells are reused when drawing.
I'm not usually a Android developer but I'm really amazed that it is possible to animate a rotation, but not statically set the rotation of a drawable. Logically the first is a subset of the second and not the other way around.