我有一个ImageView
我想显示一个不确定的进度微调器,直到图像被加载。理想情况下,我想从我的布局 xml 文件中指向可绘制对象本身,然后简单地在代码中交换图像。
这是drawable的xml;它所显示的只是一个不旋转的静态图像。
<animated-rotate
xmlns:android="http://schemas.android.com/apk/res/android"
android:drawable="@drawable/spinner"
android:fromDegrees="0"
android:toDegrees="360"
android:pivotX="50%"
android:pivotY="50%"
android:repeatCount="infinite"
android:duration="500" />
我也试过只用<rotate>
根标签,结果是一样的。有什么我想念的吗?