我正在开发一个自定义的不确定微调器,我浏览了 SDK 以获取一些指针,并找到了 Google 制作的不确定微调器 xml 文件:
<?xml version="1.0" encoding="utf-8"?>
<animated-rotate xmlns:android="http://schemas.android.com/apk/res/android"
android:drawable="@drawable/spinner_black_16"
android:pivotX="50%"
android:pivotY="50%"
android:framesCount="12"
android:frameDuration="100" />
当我在自己的项目中将其用作可绘制对象时,我收到关于android:framesCount
和的错误android:framesDuration
。在谷歌上看了一会儿后,我发现了这个指向问题报告的链接。
我的问题是:有什么解决方法让我仍然可以使用android:framesCount
andandroid:framesDuration
吗?或者有没有其他方法可以让我的自定义微调器旋转平滑?