如何提高android中的旋转速度?
我有一个可绘制的图像。我像进度条一样旋转图像。
<rotate xmlns:android="http://schemas.android.com/apk/res/android"
android:pivotX="50%" android:pivotY="50%" android:fromDegrees="0"
android:toDegrees="360" android:drawable="@drawable/spinner_white_48" />
我想提高旋转速度?为此,我必须使用什么属性?
I have an image drawable. i rotating the image like a progress bar.
<rotate xmlns:android="http://schemas.android.com/apk/res/android"
android:pivotX="50%" android:pivotY="50%" android:fromDegrees="0"
android:toDegrees="360" android:drawable="@drawable/spinner_white_48" />
i want to increase the rotation speed? for that, What attribute i have to use?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
设置持续时间和/或重复次数对我处理不确定的 ProgressBar 动画没有帮助。我必须增加 toDegrees 才能让它进行额外的循环:
Setting duration and/or repeat count did not help me with an indeterminate ProgressBar animation. I had to increase the toDegrees to have it make additional loops:
根据此链接:
此外,您可以仅对 ProgressBar 使用 inminatedDuration。
According to this link:
In addition, you can just use indeterminateDuration for the ProgressBar.
将代码添加到 progress.xml
add in code to progress.xml
设置 持续时间 和 repeatCount 您希望动画运行。
Set the duration and repeatCount that you want the animation to run.
将代码添加到progress.xml
add in code to progress.xml